tags:

views:

15

answers:

1

In axis2 on Java it's possible to run operations in the browser by the way you send the url

for example

localhost:8080/axis2/services/SimpleService?wsdl

could have operations implemented by writing urls like so

localhost:8080/axis2/services/SimpleService/hello?param0=xxx

My Question is can you do the same in PHP5 SoapServer where the url is as below?

localhost/soaptest/index.php?wsdl

Thanks

A: 

I would use the poster extension for Firefox for this.

blockhead
Yes but that wasn't what I trying to do. I was trying to use the PHP SOAP Server in a REST like mannor
x20mar
Well, then the answer is no. You'll have to create a parallel REST interface.
blockhead