Return-Path: Delivered-To: apmail-ws-axis-c-dev-archive@www.apache.org Received: (qmail 58141 invoked from network); 12 Jun 2008 03:01:06 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 12 Jun 2008 03:01:06 -0000 Received: (qmail 70857 invoked by uid 500); 12 Jun 2008 03:01:08 -0000 Delivered-To: apmail-ws-axis-c-dev-archive@ws.apache.org Received: (qmail 70845 invoked by uid 500); 12 Jun 2008 03:01:08 -0000 Mailing-List: contact axis-c-dev-help@ws.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: List-Id: "Apache AXIS C Developers List" Reply-To: "Apache AXIS C Developers List" Delivered-To: mailing list axis-c-dev@ws.apache.org Received: (qmail 70834 invoked by uid 99); 12 Jun 2008 03:01:08 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 11 Jun 2008 20:01:08 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 12 Jun 2008 03:00:27 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 2CE6A234C138 for ; Wed, 11 Jun 2008 20:00:45 -0700 (PDT) Message-ID: <451833644.1213239645182.JavaMail.jira@brutus> Date: Wed, 11 Jun 2008 20:00:45 -0700 (PDT) From: "nadir amra (JIRA)" To: axis-c-dev@ws.apache.org Subject: [jira] Updated: (AXISCPP-227) does not create classes with inheritance In-Reply-To: <1268457025.1098775304367.JavaMail.apache@nagoya> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ 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