Return-Path: Delivered-To: apmail-ws-axis-user-archive@www.apache.org Received: (qmail 74075 invoked from network); 8 Oct 2004 15:45:06 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 8 Oct 2004 15:45:06 -0000 Received: (qmail 48581 invoked by uid 500); 8 Oct 2004 15:44:46 -0000 Delivered-To: apmail-ws-axis-user-archive@ws.apache.org Received: (qmail 48566 invoked by uid 500); 8 Oct 2004 15:44:45 -0000 Mailing-List: contact axis-user-help@ws.apache.org; run by ezmlm Precedence: bulk Reply-To: axis-user@ws.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list axis-user@ws.apache.org Received: (qmail 48556 invoked by uid 99); 8 Oct 2004 15:44:45 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=HTML_MESSAGE,MIME_HTML_NO_CHARSET,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy) Received: from [65.212.182.194] (HELO mypxgw01.bco-home.com) (65.212.182.194) by apache.org (qpsmtpd/0.28) with ESMTP; Fri, 08 Oct 2004 08:44:45 -0700 Received: by mypxgw01.bco-home.com with Internet Mail Service (5.5.2653.19) id ; Fri, 8 Oct 2004 08:47:39 -0700 Message-ID: <9F752C166F3BD511B2D40200C1105A560715CBAD@memail01.bco-home.com> From: mmosttler@bco.com To: axis-user@ws.apache.org Subject: RE: Java2WSDL ant task not keeping method param names Date: Fri, 8 Oct 2004 08:47:28 -0700 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) Content-Type: multipart/alternative; boundary="----_=_NextPart_001_01C4AD4E.1D6BE0C0" X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. ------_=_NextPart_001_01C4AD4E.1D6BE0C0 Content-Type: text/plain To have java2wsdl use the method parameter names you need to supply the implementation class. It reads the param names from the implementation. marcus -----Original Message----- From: Curt P. Stanton [mailto:Curt_P_Stanton@raytheon.com] Sent: Friday, October 08, 2004 7:47 AM To: AxisList Subject: Java2WSDL ant task not keeping method param names I am using ant 1.6.1 in eclipse 3.0 Here is the task I am running I have tried this with axis 1.1 and 1.2alpha It seems that no matter what I try, I cannot get the method names to be supplied. I am not sure if it is no storing the debug info properly when compiling or if the java2wsdl task isn't reading it properly. Any help would be greatly appreciated. Thanks in advance, Curt Stanton ------_=_NextPart_001_01C4AD4E.1D6BE0C0 Content-Type: text/html Message
To have java2wsdl use the method parameter names you need to supply the implementation class.  It reads the param names from the implementation.
 
marcus
-----Original Message-----
From: Curt P. Stanton [mailto:Curt_P_Stanton@raytheon.com]
Sent: Friday, October 08, 2004 7:47 AM
To: AxisList
Subject: Java2WSDL ant task not keeping method param names

I am using ant 1.6.1 in eclipse 3.0

 

Here is the task I am running

 

I have tried this with axis 1.1 and 1.2alpha

It seems that no matter what I try, I cannot get the method names to be supplied. 

I am not sure if it is no storing the debug info properly when compiling or if the java2wsdl task isn't reading it properly.

 

Any help would be greatly appreciated.

 

Thanks in advance,

Curt Stanton

 

   <target name="compile" depends="init" description="compile the source ">

      <!-- Compile the java code from ${src} into ${build} -->

      <javac srcdir="${src}" destdir="${build}" target="1.4" debug="true" />

   </target>

 

   <target name="all" depends="compile" description="generate the wsdl">

      <!-- Create the distribution directory -->

      <mkdir dir="${dist}" />

      <path id="axis.classpath">

         <fileset dir="${axis.home}/lib">

            <include name="**/*.jar" />

         </fileset>

      </path>

 

      <taskdef resource="axis-tasks.properties" classpathref="axis.classpath" />

 

      <axis-java2wsdl classname="${package}.${classname}"

                      location="${location}"

                      namespace="${namespace}"

                      output="${dist}/${outputfile}"

                      style="wrapped"

                               use="literal">

         <mapping namespace="${namespace}" package="${package}" />

         <classpath>

            <pathelement path="${build}" />

         </classpath>

      </axis-java2wsdl>

   </target>

------_=_NextPart_001_01C4AD4E.1D6BE0C0--