How do you guys test your SOAP services? Do you use tools like soapUI or write Unit Tests ? I just wanted to hear some opinions, what do you prefer, what are the advantages or disadvantages of both approaches? And if someone writes Unit Tests , can you give me an example how to write these ???
Edit: I developed many REST services that I have traditionally tested using JUnit and the REST Client Framework. Therefore, when the REST service was deployed, I was able to call these services using the JUnit Test using an http connection. Is there something similar in SOAP too? Does anyone have sample code for a SOAP client?
source share