[ 
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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to