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

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

+4
source share
2 answers

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

You can call the replace function

../SomeService?wsdl

from

../SomeService/methodName?paramName=value

However, this does not work with xfire, the website says so. (website uses Axis2)

+5
source

no I suggest using rest if you want it.

0
source

Source: https://habr.com/ru/post/1308114/


All Articles