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 "nadir amra (JIRA)" <ax...@ws.apache.org> on 2008/06/12 05:00:45 UTC

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

     [ https://issues.apache.org/jira/browse/AXISCPP-227?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

nadir amra updated AXISCPP-227:
-------------------------------

    Component/s: WSDL processing - Doc

> does not create classes with inheritance
> ----------------------------------------
>
>                 Key: AXISCPP-227
>                 URL: https://issues.apache.org/jira/browse/AXISCPP-227
>             Project: Axis-C++
>          Issue Type: Improvement
>          Components: WSDL processing - Doc, WSDL processing - RPC
>    Affects 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.
-
You can reply to this email to add a comment to the issue online.


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