Hello SOAP gurus,
Got a tiny problem…
If the WSDL is:
http://localhost/wsapp/services/myops?wsdl
I would like to call:
http://localhost/wsapp/services/myops/operation1?in0=x&in1=y
The above (and many other variations I tried) doesn’t work. POSTing regular SOAP message works. Is the above even possible with xfire, how?
I’m trying to XInclude XML into another XML using SOAP to get the included XML, for example:
<xi:include href=”http://localhost/wsapp/services/myops/operation1?in0=x&in1=y” />
Therefore, I think I need to use GET… Do I have to write a frontend servlet to handle the parameters and to call the web service?