Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 59338 invoked from network); 14 May 2009 17:39:08 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 14 May 2009 17:39:08 -0000 Received: (qmail 7657 invoked by uid 500); 14 May 2009 17:39:08 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 7531 invoked by uid 500); 14 May 2009 17:39:07 -0000 Mailing-List: contact axis-dev-help@ws.apache.org; run by ezmlm Precedence: bulk Reply-To: axis-dev@ws.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list axis-dev@ws.apache.org Received: (qmail 7522 invoked by uid 99); 14 May 2009 17:39:07 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 14 May 2009 17:39:07 +0000 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, 14 May 2009 17:39:05 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 97ECE234C055 for ; Thu, 14 May 2009 10:38:45 -0700 (PDT) Message-ID: <1914768818.1242322725621.JavaMail.jira@brutus> Date: Thu, 14 May 2009 10:38:45 -0700 (PDT) From: "Deepal Jayasinghe (JIRA)" To: axis-dev@ws.apache.org Subject: [jira] Commented: (AXIS2-2782) If generic type is specified in a class, the XSD is not generated correctly In-Reply-To: <7063873.1181224285890.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/AXIS2-2782?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12709480#action_12709480 ] Deepal Jayasinghe commented on AXIS2-2782: ------------------------------------------ hi Sukhitha, Glad to hear that you have already completed something, anyway this is the procedure you should follow - First get a SVN checkout - Then make your changes - Create a patch (please do not attach the classes) - Then attach the patch After that I will go though the patch and apply it. Before attaching patch, please run the build and make sure that works fine. To run the build use "mvn clean install" About the access, since you are not a committer I can not assign the issue to you. Thank you! Deepal > If generic type is specified in a class, the XSD is not generated correctly > --------------------------------------------------------------------------- > > Key: AXIS2-2782 > URL: https://issues.apache.org/jira/browse/AXIS2-2782 > Project: Axis 2.0 (Axis2) > Issue Type: Bug > Environment: Axis 1.2 under Tomcat on XP > Reporter: Drew Bentley > Assignee: Deepal Jayasinghe > > Given the following classes: > public class GenericObject > { > private T _value; > public T getValue() > { > return _value; > } > public void setValue(T value) > { > _value = value; > } > } > public class Test > { > private GenericObject _genValue; > > public GenericObject getGenValue(){ > return _genValue; > } > > public void setGenValue(GenericObject value){ > _genValue = value; > } > } > The XSD for GenericObject.Value should be a string not xs:anyType > > > > > > > > > > > > -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.