You are viewing a plain text version of this content. The canonical link for it is here.
Posted to c-dev@axis.apache.org by "Samisa Abeysinghe (JIRA)" <ax...@ws.apache.org> on 2005/02/02 04:06:20 UTC

[jira] Updated: (AXISCPP-227) does not create classes with inheritance

     [ http://issues.apache.org/jira/browse/AXISCPP-227?page=history ]

Samisa Abeysinghe updated AXISCPP-227:
--------------------------------------

    Component: WSDL processing

> does not create classes with inheritance
> ----------------------------------------
>
>          Key: AXISCPP-227
>          URL: http://issues.apache.org/jira/browse/AXISCPP-227
>      Project: Axis-C++
>         Type: Improvement
>   Components: WSDL processing
>     Versions: 1.3 Final
>     Reporter: Geir Egil Hansen
>  Attachments: DecisionMakerWebServicesTEST.wsdl
>
> Taking a WSDL file as input, the org.apache.axis.wsdl.wsdl2ws.WSDL2Ws does NOT create C++ objects with inheritance. In Java, the org.apache.axis.wsdl.WSDL2Java does it correct on the same WSDL file.
> Example (Java):
> package no.lindorff.wsclients.axis.generated;
> public class DmWSElement  implements java.io.Serializable {
> ....etc
> package no.lindorff.wsclients.axis.generated;
> public class DmWSPolicyElement  extends no.lindorff.wsclients.axis.generated.DmWSElement  implements java.io.Serializable {
> ....etc
> Example (C++):
> class DmWSElement
> {
> public: 
> ....etc
> class DmWSPolicyElement
> {
> public: 
> ....etc
> The latter should be 
> class DmWSPolicyElement : public DmWSElement
> {
> public: 
> ....etc
> shouldn't it?

-- 
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
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira