Last active
December 25, 2015 19:59
-
-
Save sandeepkunkunuru/7031375 to your computer and use it in GitHub Desktop.
Webservice testing tools
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Option 1 | |
-------- | |
1) Download the WSDL file. | |
2) Create a new Dynamic Web project in eclipse | |
3) Right click on WSDL file and choose Webservices --> Test With Web Services Explorer | |
Option 2 | |
-------- | |
1) Download SOAPUI - http://sourceforge.net/projects/soapui/?source=pdlp | |
2) Create a project using the WSDL url | |
3) Tes each operation | |
Option 3 | |
-------- | |
1) Test the webservice using curl. An example is in another gist | |
Option 4 | |
-------- | |
1) Writing a custom SOAP client for the webservice. | |
Other Options include ... | |
---------------- | |
using eclipse wizard to generate stub code and writing a program to invoke stub code. | |
References: | |
* http://www.ibm.com/developerworks/library/x-soapcl/listing1.html | |
* http://stackoverflow.com/questions/15940234/how-to-do-a-soap-web-service-call-from-java-class | |
* http://blog.hexican.com/2010/12/sending-soap-messages-through-https-using-saaj/ | |
* http://sourceforge.net/projects/soapui/?source=pdlp | |
* http://www.mkyong.com/java/java-https-client-httpsurlconnection-example/ | |
* http://stackoverflow.com/questions/12222607/how-to-do-a-soap-wsdl-web-services-call-from-the-command-line | |
* http://stackoverflow.com/questions/18403187/how-does-eclipse-web-service-explorer-work |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment