Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to call a webservice method for testing, e.g. from a browser

There is a dll webservice (made with Delphi) that has a method called List which returns a list of strings (widestring).

Is there any method for calling that service without having to write a client application for consuming it?.

Ex.: http://misitio.com:8080/miwebservice.dll?methodname=list

like image 416
NizamUlMulk Avatar asked Jul 29 '13 12:07

NizamUlMulk


1 Answers

The Chrome App Postman can send SOAP requests. You just need to provide the Web Service URL, select POST, set the proper content-type header (text/xml, application/soap+xml, etc.), and provide the proper xml soap body in the request. Click Send.

Below is an example request which posts to a free weather web service.

enter image description here

like image 70
James Lawruk Avatar answered Nov 11 '22 23:11

James Lawruk