user854577
user854577

Reputation:

Wsdl for a REST service issues

I'm trying to use the GetPostCodeDetailsByPlaceName method from this wsdl. I can't figure out how the parameters should go. Am I looking at this the wrong way or is it incomplete?

I've tried guessing a ton of things like: This and this

even this

Anyone make any sense of it? Thanks.

Upvotes: 0

Views: 65

Answers (2)

user182944
user182944

Reputation: 8067

WSDL = SOAP
WADL = REST

Hence the thread title itself is invalid!!!

Upvotes: 0

Lan
Lan

Reputation: 6660

Since this web service has a WSDL, it is a SOAP based web service, not a RESTful web service. You can use Apache Axis to generate a WS client based on the WSDL, or you can use a tool like SoapUI to invoke the web service.

Upvotes: 2

Related Questions