Can I invoke a web service by appending something on service link? For
example, I publish a web service on "http://localhost:8080/services/hello";
and its wsdl defines a operation "echo". How can I invoke this method? I
have tried "http://localhost:8080/services/hello?method=echo&name="hello
world" but it failed and return this error:
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/";
xmlns:xsd="http://www.w3.org/2001/XMLSchema";
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";><soap:Body><soap:Fault><faultcode>soap:Server</faultcode><faultstring>Unexpected
character '/' (code 47) in prolog; expected '&lt;'&#xd;
 at [row,col {unknown-source}]:
[1,1]</faultstring></soap:Fault></soap:Body></soap:Envelope>


Benson Margulies-4 wrote:
> 
> ?wsdl is just a standard HTTP URL query component.
> 
> You can certainly write such a URL into an import in some other WSDL,
> but many of us might recommend writing it to a file so that you aren't
> dependent on whether the service is up.
> 
> 

-- 
View this message in context: 
http://www.nabble.com/What-does-%22-wsdl%22-mean--tp17032671p17041557.html
Sent from the cxf-user mailing list archive at Nabble.com.

Reply via email to