Reputation: 93
I have got the wsdl from client for a webservice , Now I want to test that wsdl , from google I have explored a tool named Soap UI , through which we can test our web service plus it will generate the client code for us also, Please tell me what other tools are available that will help me to explore that wsdl from testing plus generating the client code or any other functionality also.
Upvotes: 0
Views: 426
Reputation: 4847
If your main goal is to do testing IMHO SoapUI
is the best tool. If you need to invoke the service programatically doing it in Eclise is the best option.
You can check this link on SOAP Tools
Upvotes: 3
Reputation: 27880
Eclipse, for instance, has a Web Services Explorer tool that is quite useful for testing web services. You can also generate a client with it.
You can easily generate clients with the Axis or Apache CXF WS libraries' wsdl2java
.
Upvotes: 2