JavaRanch » Java Forums »
Java »
Web Services
| Author |
WebService Client - Unexpected SubElement Exception
|
Logeswaran Radhakrishnan
Greenhorn
Joined: Apr 20, 2010
Posts: 13
|
|
Hi,
I am new to WebServices and i am using axis2-1.4.1 Version of Axis to generate stubs from the WSDL file. The WSDL file when tested with the SoapUI gives the expected response but when i tried for the same response using the webservice client it shows the unexpected subelement exception .
Two service methods are
and the generated WSDL file is
and the client class looks like this
and the generated exception is
and the generated stub class is
Help me out to solve this issue.
Thanks in advance.
Regards,
Logeswaran
|
 |
Ben Linus
Greenhorn
Joined: Mar 02, 2010
Posts: 15
|
|
What is the exact request you are using to test in SOAPUI?
This usually means you are passing in a request element that the XSD does not expect.
|
 |
Naren Chivukula
Ranch Hand
Joined: Feb 03, 2004
Posts: 542
|
|
Hi Logeswaran,
Unexpected subelement idReturn
From your WSDL, there is no element defined as "idReturn". Unless you define it in WSDL, Axis will not understand this when processing stub generation logic. Have you created any service which returns id? For me it seems, WSDL in not inline with your service. You may have to re-look at your service.
|
Cheers,
Naren (SCJP, SCDJWS and SCWCD)
|
 |
 |
|
|
subject: WebService Client - Unexpected SubElement Exception
|
|
|
|