Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to call WSDL method just by calling some url from browser?

Is it possible to call WSDL (bacikHTTPbinding) method just by calling some url from browser?

like image 639
Rella Avatar asked Apr 27 '10 07:04

Rella


1 Answers

According to this: http://www.devdaily.com/blog/post/java/how-to-call-web-service-from-browser

You can by calling replacing

../SomeService?wsdl

with

../SomeService/methodName?paramName=value

However that doesn't work with xfire, the website states so. (website uses Axis2)

like image 129
Ivan Avatar answered Nov 23 '22 23:11

Ivan