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 "Thomas Lueer (JIRA)" <ji...@apache.org> on 2007/05/13 16:16:15 UTC

[jira] Created: (AXIS2-2661) Mising type for Parent Class in WSDL

Mising type for Parent Class in WSDL
------------------------------------

                 Key: AXIS2-2661
                 URL: https://issues.apache.org/jira/browse/AXIS2-2661
             Project: Axis 2.0 (Axis2)
          Issue Type: Bug
          Components: wsdl
    Affects Versions: 1.2, nightly
            Reporter: Thomas Lueer


Using a POJO Service with derived parameter causes generation of a wsdl-schema without any type definition for the parent class:

class MyService{
  public String service(A param){
    return "finished";
  }
}

class B{
  private String paramB;

  // Getter & Setter 
}

class A extends B{
  //properties, getter & setter
}

Generated WSDL:

<comlpexType name="A">
  <xs:complexContent>
    <xs:extension base="ax21:B">
      <!-- ... -->
    </xs:extension>
  </xs:complexContent>
</complexType>


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


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


[jira] Updated: (AXIS2-2661) Mising type for Parent Class in WSDL

Posted by "Davanum Srinivas (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/AXIS2-2661?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Davanum Srinivas updated AXIS2-2661:
------------------------------------

    Assignee: Deepal Jayasinghe

> Mising type for Parent Class in WSDL
> ------------------------------------
>
>                 Key: AXIS2-2661
>                 URL: https://issues.apache.org/jira/browse/AXIS2-2661
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: wsdl
>    Affects Versions: 1.2, nightly
>            Reporter: Thomas Lueer
>            Assignee: Deepal Jayasinghe
>         Attachments: MyService.aar, patch.diff
>
>
> Using a POJO Service with derived parameter causes generation of a wsdl-schema without any type definition for the parent class:
> class MyService{
>   public String service(A param){
>     return "finished";
>   }
> }
> class B{
>   private String paramB;
>   // Getter & Setter 
> }
> class A extends B{
>   //properties, getter & setter
> }
> Generated WSDL:
> <comlpexType name="A">
>   <xs:complexContent>
>     <xs:extension base="ax21:B">
>       <!-- ... -->
>     </xs:extension>
>   </xs:complexContent>
> </complexType>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


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


[jira] Updated: (AXIS2-2661) Mising type for Parent Class in WSDL

Posted by "Jaliya Ekanayake (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/AXIS2-2661?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jaliya Ekanayake updated AXIS2-2661:
------------------------------------

    Priority: Blocker  (was: Major)

> Mising type for Parent Class in WSDL
> ------------------------------------
>
>                 Key: AXIS2-2661
>                 URL: https://issues.apache.org/jira/browse/AXIS2-2661
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: wsdl
>    Affects Versions: 1.2, nightly
>            Reporter: Thomas Lueer
>            Assignee: Deepal Jayasinghe
>            Priority: Blocker
>         Attachments: MyService.aar, patch.diff
>
>
> Using a POJO Service with derived parameter causes generation of a wsdl-schema without any type definition for the parent class:
> class MyService{
>   public String service(A param){
>     return "finished";
>   }
> }
> class B{
>   private String paramB;
>   // Getter & Setter 
> }
> class A extends B{
>   //properties, getter & setter
> }
> Generated WSDL:
> <comlpexType name="A">
>   <xs:complexContent>
>     <xs:extension base="ax21:B">
>       <!-- ... -->
>     </xs:extension>
>   </xs:complexContent>
> </complexType>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


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


[jira] Updated: (AXIS2-2661) Mising type for Parent Class in WSDL

Posted by "Thomas Lueer (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/AXIS2-2661?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Thomas Lueer updated AXIS2-2661:
--------------------------------

    Attachment: MyService.aar

> Mising type for Parent Class in WSDL
> ------------------------------------
>
>                 Key: AXIS2-2661
>                 URL: https://issues.apache.org/jira/browse/AXIS2-2661
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: wsdl
>    Affects Versions: 1.2, nightly
>            Reporter: Thomas Lueer
>         Attachments: MyService.aar, patch.diff
>
>
> Using a POJO Service with derived parameter causes generation of a wsdl-schema without any type definition for the parent class:
> class MyService{
>   public String service(A param){
>     return "finished";
>   }
> }
> class B{
>   private String paramB;
>   // Getter & Setter 
> }
> class A extends B{
>   //properties, getter & setter
> }
> Generated WSDL:
> <comlpexType name="A">
>   <xs:complexContent>
>     <xs:extension base="ax21:B">
>       <!-- ... -->
>     </xs:extension>
>   </xs:complexContent>
> </complexType>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


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


[jira] Resolved: (AXIS2-2661) Mising type for Parent Class in WSDL

Posted by "Deepal Jayasinghe (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/AXIS2-2661?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Deepal Jayasinghe resolved AXIS2-2661.
--------------------------------------

    Resolution: Fixed

> Mising type for Parent Class in WSDL
> ------------------------------------
>
>                 Key: AXIS2-2661
>                 URL: https://issues.apache.org/jira/browse/AXIS2-2661
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: wsdl
>    Affects Versions: 1.2, nightly
>            Reporter: Thomas Lueer
>            Assignee: Deepal Jayasinghe
>            Priority: Blocker
>         Attachments: MyService.aar, patch.diff
>
>
> Using a POJO Service with derived parameter causes generation of a wsdl-schema without any type definition for the parent class:
> class MyService{
>   public String service(A param){
>     return "finished";
>   }
> }
> class B{
>   private String paramB;
>   // Getter & Setter 
> }
> class A extends B{
>   //properties, getter & setter
> }
> Generated WSDL:
> <comlpexType name="A">
>   <xs:complexContent>
>     <xs:extension base="ax21:B">
>       <!-- ... -->
>     </xs:extension>
>   </xs:complexContent>
> </complexType>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


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


[jira] Updated: (AXIS2-2661) Mising type for Parent Class in WSDL

Posted by "Thomas Lueer (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/AXIS2-2661?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Thomas Lueer updated AXIS2-2661:
--------------------------------

    Attachment: patch.diff

Maybe you want to try out this patch...

> Mising type for Parent Class in WSDL
> ------------------------------------
>
>                 Key: AXIS2-2661
>                 URL: https://issues.apache.org/jira/browse/AXIS2-2661
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: wsdl
>    Affects Versions: 1.2, nightly
>            Reporter: Thomas Lueer
>         Attachments: patch.diff
>
>
> Using a POJO Service with derived parameter causes generation of a wsdl-schema without any type definition for the parent class:
> class MyService{
>   public String service(A param){
>     return "finished";
>   }
> }
> class B{
>   private String paramB;
>   // Getter & Setter 
> }
> class A extends B{
>   //properties, getter & setter
> }
> Generated WSDL:
> <comlpexType name="A">
>   <xs:complexContent>
>     <xs:extension base="ax21:B">
>       <!-- ... -->
>     </xs:extension>
>   </xs:complexContent>
> </complexType>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


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