10

I'm new to web services and I've been breaking my head trying to find a simple java SOAP client program on the Internet.
All I want to do is send a SOAP message and receive back some response.
There is a website which offers free web-services.

http://www.webservicex.net/ws/WSDetails.aspx?WSID=17&CATID=7

You feed in the country name and it gives you the country's ISD code. It's as simple as that.

I want to send the country name to the web service and get back its ISD code using only Javaand without any external jars.

indivisible
  • 4,892
  • 4
  • 31
  • 50
Raghu
  • 101
  • 1
  • 1
  • 3

2 Answers2

7

Try SoapUI - it's quite awesome and covers almost all aspects of working w/ web-services..

anirvan
  • 4,797
  • 4
  • 32
  • 42
  • 1
    Looks very nice, but this doesn't meet the OP's "no external jars" requirement. – Trebor Rude Aug 21 '13 at 14:48
  • true — but the OP also mentioned: **breaking my head trying to find a simple java SOAP client program on the Internet**. my answer was only meant to help the OP in knowing about the client. – anirvan Aug 22 '13 at 05:58
1

If you're looking for a tool to test web-services, most people I know use Soap-UI: http://www.soapui.org/

Kris C
  • 2,828
  • 1
  • 29
  • 25