You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by "Kinichiro Inoguchi (JIRA)" <ji...@apache.org> on 2006/11/18 10:56:37 UTC

[jira] Commented: (AXIS2-1746) POJO client call failed with "Unexpected subelement"

    [ http://issues.apache.org/jira/browse/AXIS2-1746?page=comments#action_12450999 ] 
            
Kinichiro Inoguchi commented on AXIS2-1746:
-------------------------------------------

Response message of this service is like below.
You can see this by http://localhost:8080/axis2/rest/TestPojoService/getBean?inParam=1

(1) belongs to parent's namespace ("http://service.myService/xsd")
(2) should belongs to "http://data1.myService/xsd" ?
(3) should belongs to "http://data2.myService/xsd" ?

Namespace convention between (1) and (2),(3) seems different.

<ns:getBeanResponse xmlns:ns="http://service.myService/xsd">
  <ns:return>  *=== (1)this element (DataBean1) belongs to parent's namespace
    <ret01 xmlns="http://data1.myService/xsd">hello</ret01> 
    <ret01array1 xmlns="http://data1.myService/xsd">hello</ret01array1> 
    <ret01array2 xmlns="http://data1.myService/xsd">hello</ret01array2> 
    ...
    <ret09 xmlns="http://data1.myService/xsd">2006-11-18T09:35:18.687Z</ret09> 
    <ret09array1 xmlns="http://data1.myService/xsd">2006-11-18T09:35:18.687Z</ret09array1> 
    <ret09array2 xmlns="http://data1.myService/xsd">2006-11-18T09:35:18.687Z</ret09array2> 
    <ax24:ret20 xmlns:ax24="http://data2.myService/xsd">  *=== (2)this element (DataBean2) 
      <ret01 xmlns="http://data2.myService/xsd">hello</ret01> 
      <ret01array1 xmlns="http://data2.myService/xsd">hello</ret01array1> 
      <ret01array2 xmlns="http://data2.myService/xsd">hello</ret01array2> 
      ...
      <ret09 xmlns="http://data2.myService/xsd">2006-11-18T09:35:18.687Z</ret09> 
      <ret09array1 xmlns="http://data2.myService/xsd">2006-11-18T09:35:18.687Z</ret09array1> 
      <ret09array2 xmlns="http://data2.myService/xsd">2006-11-18T09:35:18.687Z</ret09array2> 
      <ax25:ret20 xmlns:ax25="http://data3.myService/xsd">  *=== (3)this element (DataBean3) 
        <ret01 xmlns="http://data3.myService/xsd">hello</ret01> 
        <ret01array1 xmlns="http://data3.myService/xsd">hello</ret01array1> 
        <ret01array2 xmlns="http://data3.myService/xsd">hello</ret01array2> 
        ...
        <ret09 xmlns="http://data3.myService/xsd">2006-11-18T09:35:18.687Z</ret09> 
        <ret09array1 xmlns="http://data3.myService/xsd">2006-11-18T09:35:18.687Z</ret09array1> 
        <ret09array2 xmlns="http://data3.myService/xsd">2006-11-18T09:35:18.687Z</ret09array2> 
      </ax25:ret20>
...

> POJO client call failed with "Unexpected subelement"
> ----------------------------------------------------
>
>                 Key: AXIS2-1746
>                 URL: http://issues.apache.org/jira/browse/AXIS2-1746
>             Project: Apache Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: rpc
>         Environment: Axis2 1.1 release
>            Reporter: Kinichiro Inoguchi
>         Attachments: client_src.zip, service_src.zip, TestPojoService.aar
>
>
> I created stub by WSDL2JAVA tool, and call that service.
> Client program failed with "Unexpected subelement".
> I think mismatch of javabeans' namespace is an issue.
> Top level element of javabeans should belongs to parent's namespace, should not ?
> <I generated stub like this>
> C:\work>%AXIS2_HOME%\bin\wsdl2java -uri http://localhost:8080/axis2/services/TestPojoService?wsdl -o test
> Using AXIS2_HOME:   C:\work\axis2-1.1
> Using JAVA_HOME:    C:\j2sdk1.4.2_04
> C:\work>
> <stack trace>
> java.lang.RuntimeException: java.lang.RuntimeException: Unexpected subelement ret20
> 	at myservice.service.TestPojoServiceStub.fromOM(TestPojoServiceStub.java:14552)
> 	at myservice.service.TestPojoServiceStub.getBean(TestPojoServiceStub.java:152)
> 	at TestClient.main(TestClient.java:15)
> Caused by: java.lang.RuntimeException: Unexpected subelement ret20
> 	at myservice.service.TestPojoServiceStub$DataBean1$Factory.parse(TestPojoServiceStub.java:9455)
> 	at myservice.service.TestPojoServiceStub$GetBeanResponse$Factory.parse(TestPojoServiceStub.java:4570)
> 	at myservice.service.TestPojoServiceStub.fromOM(TestPojoServiceStub.java:14546)
> 	... 2 more
> Exception in thread "main" 

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-dev-help@ws.apache.org