WebService made with NuSoap in PHP. I can not access in Java

1

I developed a WebService in PHP, using the NuSoap library. Webservice is already hosted and running. When I develop a client using PHP, whether using NuSoap or using the native PHP soap class, I can use Webservice with no problems. But when I try to use webservice in a java client (via wsdl), I get the following error message:

  

com.sun.xml.internal.ws.streaming.XMLStreamReaderException: XML tag   unexpected: expected {} sendNotaResponse, but found:   { link } sendNotaResponse

I'm already breaking my heart by researching a solution, but if anyone can give me some clue, thank you.

    
asked by anonymous 12.07.2014 / 18:36

1 answer

4

Your original error should be within these lines:

  

com.sun.xml.internal.ws.streaming.XMLStreamReaderException: unexpected XML tag.
  expected: {} sendNotaResponse
  but found: { link } sendNotaResponse

Briefly, you are indicating that the result is not the expected result for the path indicated on the client side.

Please check your address, it must be incomplete or contain typos.

    
13.07.2014 / 16:03