You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-user@axis.apache.org by Michael Sutter <Su...@gmx.li> on 2007/08/21 16:39:15 UTC

Undeclared namespace prefix "SOAP-ENV"

Hello list,

I have a problem by accessing a AXISCPP service from an AXIS(2) Java client. I have a very simple WSDL, having only one method adding two numbers. I must access this service over a Java client, if it is possible over a AXIS2 Java client. 

The wsdl is generated from a Java Class with java org.apache.axis.wsdl.Java2WSDL -l"http://localhost:9090/axis/TestService" -uLITERAL -yDOCUMENT -nauger  org.fzk.auger.MathAdd

When I generate the client stubs and access the service I always get an Exception:
org.apache.axis2.AxisFault: com.ctc.wstx.exc.WstxParsingException: Undeclared namespace prefix "SOAP-ENV"
 at [row,col {unknown-source}]: [2,19]
        at org.apache.axis2.transport.TransportUtils.createSOAPMessage(TransportUtils.java:81)
        at org.apache.axis2.description.OutInAxisOperationClient.send(OutInAxisOperation.java:356)
        at org.apache.axis2.description.OutInAxisOperationClient.execute(OutInAxisOperation.java:294)
        at org.fzk.auger.MathAddServiceStub.add(MathAddServiceStub.java:151)
        at org.fzk.auger.Client.main(Client.java:14)

Does anybody know how I can solve the exception? Or it is not possible to access a c++ service generated with -uLITERAL -yDOCUMENT - where I think the problem is from.

You can find the WSDL below - but I dont't think that it is wrong.

Kind regards 
Michael

<?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitions targetNamespace="http://auger.fzk.org" xmlns:apachesoap="http://xml.apache.org/xml-soap" xmlns:impl="http://auger.fzk.org" xmlns:intf="http://auger.fzk.org" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<!--WSDL created by Apache Axis version: 1.4
Built on Apr 22, 2006 (06:55:48 PDT)-->
 <wsdl:types>
  <schema elementFormDefault="qualified" targetNamespace="http://auger.fzk.org" xmlns="http://www.w3.org/2001/XMLSchema">
   <element name="add">
    <complexType>
     <sequence>
      <element name="a" type="xsd:int"/>
      <element name="b" type="xsd:int"/>
     </sequence>
    </complexType>
   </element>
   <element name="addResponse">
    <complexType>
     <sequence>
      <element name="addReturn" type="xsd:int"/>
     </sequence>
    </complexType>
   </element>
  </schema>
 </wsdl:types>

   <wsdl:message name="addResponse">

      <wsdl:part element="impl:addResponse" name="parameters"/>

   </wsdl:message>

   <wsdl:message name="addRequest">

      <wsdl:part element="impl:add" name="parameters"/>

   </wsdl:message>

   <wsdl:portType name="MathAdd">

      <wsdl:operation name="add">

         <wsdl:input message="impl:addRequest" name="addRequest"/>

         <wsdl:output message="impl:addResponse" name="addResponse"/>

      </wsdl:operation>

   </wsdl:portType>

   <wsdl:binding name="TestServiceSoapBinding" type="impl:MathAdd">

      <wsdlsoap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>

      <wsdl:operation name="add">

         <wsdlsoap:operation soapAction=""/>

         <wsdl:input name="addRequest">

            <wsdlsoap:body use="literal"/>

         </wsdl:input>

         <wsdl:output name="addResponse">

            <wsdlsoap:body use="literal"/>

         </wsdl:output>

      </wsdl:operation>

   </wsdl:binding>

   <wsdl:service name="MathAddService">

      <wsdl:port binding="impl:TestServiceSoapBinding" name="TestService">

         <wsdlsoap:address location="http://localhost:9090/axis/TestService"/>

      </wsdl:port>

   </wsdl:service>

</wsdl:definitions>

-- 
Der GMX SmartSurfer hilft bis zu 70% Ihrer Onlinekosten zu sparen! 
Ideal für Modem und ISDN: http://www.gmx.net/de/go/smartsurfer

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


Re: Undeclared namespace prefix "SOAP-ENV"

Posted by keith chapman <ke...@gmail.com>.
Whats the Axis2 version you used? also what are the arguments you used when
generating the clent?. Axis2 Java does support doc lit type stuff.

Thanks,
Keith.

On 8/21/07, Michael Sutter <Su...@gmx.li> wrote:
>
> Hello list,
>
> I have a problem by accessing a AXISCPP service from an AXIS(2) Java
> client. I have a very simple WSDL, having only one method adding two
> numbers. I must access this service over a Java client, if it is possible
> over a AXIS2 Java client.
>
> The wsdl is generated from a Java Class with java
> org.apache.axis.wsdl.Java2WSDL -l"http://localhost:9090/axis/TestService"
> -uLITERAL -yDOCUMENT -nauger  org.fzk.auger.MathAdd
>
> When I generate the client stubs and access the service I always get an
> Exception:
> org.apache.axis2.AxisFault: com.ctc.wstx.exc.WstxParsingException:
> Undeclared namespace prefix "SOAP-ENV"
> at [row,col {unknown-source}]: [2,19]
>         at org.apache.axis2.transport.TransportUtils.createSOAPMessage(
> TransportUtils.java:81)
>         at org.apache.axis2.description.OutInAxisOperationClient.send(
> OutInAxisOperation.java:356)
>         at org.apache.axis2.description.OutInAxisOperationClient.execute(
> OutInAxisOperation.java:294)
>         at org.fzk.auger.MathAddServiceStub.add(MathAddServiceStub.java
> :151)
>         at org.fzk.auger.Client.main(Client.java:14)
>
> Does anybody know how I can solve the exception? Or it is not possible to
> access a c++ service generated with -uLITERAL -yDOCUMENT - where I think the
> problem is from.
>
> You can find the WSDL below - but I dont't think that it is wrong.
>
> Kind regards
> Michael
>
> <?xml version="1.0" encoding="UTF-8"?>
> <wsdl:definitions targetNamespace="http://auger.fzk.org"
> xmlns:apachesoap="http://xml.apache.org/xml-soap" xmlns:impl="
> http://auger.fzk.org" xmlns:intf="http://auger.fzk.org" xmlns:wsdl="
> http://schemas.xmlsoap.org/wsdl/" xmlns:wsdlsoap="
> http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="
> http://www.w3.org/2001/XMLSchema">
> <!--WSDL created by Apache Axis version: 1.4
> Built on Apr 22, 2006 (06:55:48 PDT)-->
> <wsdl:types>
>   <schema elementFormDefault="qualified" targetNamespace="
> http://auger.fzk.org" xmlns="http://www.w3.org/2001/XMLSchema">
>    <element name="add">
>     <complexType>
>      <sequence>
>       <element name="a" type="xsd:int"/>
>       <element name="b" type="xsd:int"/>
>      </sequence>
>     </complexType>
>    </element>
>    <element name="addResponse">
>     <complexType>
>      <sequence>
>       <element name="addReturn" type="xsd:int"/>
>      </sequence>
>     </complexType>
>    </element>
>   </schema>
> </wsdl:types>
>
>    <wsdl:message name="addResponse">
>
>       <wsdl:part element="impl:addResponse" name="parameters"/>
>
>    </wsdl:message>
>
>    <wsdl:message name="addRequest">
>
>       <wsdl:part element="impl:add" name="parameters"/>
>
>    </wsdl:message>
>
>    <wsdl:portType name="MathAdd">
>
>       <wsdl:operation name="add">
>
>          <wsdl:input message="impl:addRequest" name="addRequest"/>
>
>          <wsdl:output message="impl:addResponse" name="addResponse"/>
>
>       </wsdl:operation>
>
>    </wsdl:portType>
>
>    <wsdl:binding name="TestServiceSoapBinding" type="impl:MathAdd">
>
>       <wsdlsoap:binding style="document" transport="
> http://schemas.xmlsoap.org/soap/http"/>
>
>       <wsdl:operation name="add">
>
>          <wsdlsoap:operation soapAction=""/>
>
>          <wsdl:input name="addRequest">
>
>             <wsdlsoap:body use="literal"/>
>
>          </wsdl:input>
>
>          <wsdl:output name="addResponse">
>
>             <wsdlsoap:body use="literal"/>
>
>          </wsdl:output>
>
>       </wsdl:operation>
>
>    </wsdl:binding>
>
>    <wsdl:service name="MathAddService">
>
>       <wsdl:port binding="impl:TestServiceSoapBinding" name="TestService">
>
>          <wsdlsoap:address location="
> http://localhost:9090/axis/TestService"/>
>
>       </wsdl:port>
>
>    </wsdl:service>
>
> </wsdl:definitions>
>
> --
> Der GMX SmartSurfer hilft bis zu 70% Ihrer Onlinekosten zu sparen!
> Ideal für Modem und ISDN: http://www.gmx.net/de/go/smartsurfer
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: axis-user-unsubscribe@ws.apache.org
> For additional commands, e-mail: axis-user-help@ws.apache.org
>
>


-- 
Keith Chapman
WSO2 Inc.
Oxygen for Web Services Developers.
http://wso2.org/

Re: [axis2-1.1.1] Deriving originating URI from SOAP

Posted by Andrew Martin <am...@regenstrief.org>.
This should retrieve the sender:

MessageContext.getCurrentMessageContext().getProperty("REMOTE_ADDR").toString()

Andrew

Jones, Alan R wrote:
>  Is it possible to derive the originating URI of a sender from a SOAP
> request message, even if the sender has not explicitly set any message
> elements with such information?
> 
> 
> Thanks,
> 
> Alan J
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: axis-user-unsubscribe@ws.apache.org
> For additional commands, e-mail: axis-user-help@ws.apache.org
> 

-- 
Andrew Martin
Computer Programmer
Regenstrief Institute, Inc.
410 West 10th Street, Suite 2000
Indianapolis, IN 46202-3012
Phone: (317) 423-5542
Fax: (317) 423-5695
amartin@regenstrief.org


Confidentiality Notice: The contents of this message and any files
transmitted with it may contain confidential and/or privileged
information and are intended solely for the use of the named
addressee(s). Additionally, the information contained herein may have
been disclosed to you from medical records with confidentiality
protected by federal and state laws. Federal regulations and State laws
prohibit you from making further disclosure of such information without
the specific written consent of the person to whom the information
pertains or as otherwise permitted by such regulations. A general
authorization for the release of medical or other information is not
sufficient for this purpose.

If you have received this message in error, please notify the sender by
return e-mail and delete the original message. Any retention,
disclosure, copying, distribution or use of this information by anyone
other than the intended recipient is strictly prohibited.

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


[axis2-1.1.1] Deriving originating URI from SOAP

Posted by "Jones, Alan R" <al...@boeing.com>.
 Is it possible to derive the originating URI of a sender from a SOAP
request message, even if the sender has not explicitly set any message
elements with such information?


Thanks,

Alan J


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


Re: Undeclared namespace prefix "SOAP-ENV"

Posted by Michael Sutter <Su...@gmx.li>.
Hello,

I'm not sure, that I'm using the right versions - the error must come from something.
Here is exactly what I'm doing.
The server is AXISC (vers. 1.6b) and the client is AXIS2 (vers. 1.3)

first generating the wsdl: (CLASSPATH=$AXIS_HOME/lib)
java org.apache.axis.wsdl.Java2WSDL -l"http://ipepc45.ka.fzk.de:9090/axis/TestService" -uLITERAL -yWRAPPED -T1.2 -n"org.fzk.auger" org.fzk.auger.MathAdd

then generating the skeleton: (CLASSPATH=$AXISCPP_DEPLOY/lib)
java org.apache.axis.wsdl.wsdl2ws.WSDL2Ws -lc++ -sserver -ocpp TestService.wsdl

then generating the stubs: (CLASSPATH=$AXIS2_HOME/lib)
$AXIS2_HOME/bin/wsdl2java.sh -uri TestService.wsdl -u -s -o java/ -wv 1.1

During query of the service with the AXIS2 client I always get the com.ctc.wstx.exc.WstxParsingException: Undeclared namespace prefix "SOAP-ENV" exception.

If you have a idea what I was making wrong please tell it me. When generating the WSDL with -yDocument the resulting wsdl has the declared function, but without params - so I used the WRAPPED argument. Maybe this is my error?

Attached you can find all my files.

Kind regards
Michael

-------- Original-Nachricht --------
> Datum: Mon, 27 Aug 2007 09:33:50 -0500
> Von: Nadir Amra <am...@us.ibm.com>
> An: axis-user@ws.apache.org
> Betreff: Re: Undeclared namespace prefix "SOAP-ENV"

> Ensure you are using SOAP 1.1.   !.2 is not supported as of yet.
> 
> Nadir K. Amra
> 
> 
> "Michael Sutter" <Su...@gmx.li> wrote on 08/21/2007 09:39:15 AM:
> 
> > Hello list,
> > 
> > I have a problem by accessing a AXISCPP service from an AXIS(2) Java
> > client. I have a very simple WSDL, having only one method adding two
> > numbers. I must access this service over a Java client, if it is 
> > possible over a AXIS2 Java client. 
> > 
> > The wsdl is generated from a Java Class with java org.apache.axis.
> > wsdl.Java2WSDL -l"http://localhost:9090/axis/TestService" -uLITERAL 
> > -yDOCUMENT -nauger  org.fzk.auger.MathAdd
> > 
> > When I generate the client stubs and access the service I always get
> > an Exception:
> > org.apache.axis2.AxisFault: com.ctc.wstx.exc.WstxParsingException: 
> > Undeclared namespace prefix "SOAP-ENV"
> >  at [row,col {unknown-source}]: [2,19]
> >         at org.apache.axis2.transport.TransportUtils.
> > createSOAPMessage(TransportUtils.java:81)
> >         at org.apache.axis2.description.OutInAxisOperationClient.
> > send(OutInAxisOperation.java:356)
> >         at org.apache.axis2.description.OutInAxisOperationClient.
> > execute(OutInAxisOperation.java:294)
> >         at 
> org.fzk.auger.MathAddServiceStub.add(MathAddServiceStub.java:151)
> >         at org.fzk.auger.Client.main(Client.java:14)
> > 
> > Does anybody know how I can solve the exception? Or it is not 
> > possible to access a c++ service generated with -uLITERAL -yDOCUMENT
> > - where I think the problem is from.
> > 
> > You can find the WSDL below - but I dont't think that it is wrong.
> > 
> > Kind regards 
> > Michael
> > 
> > <?xml version="1.0" encoding="UTF-8"?>
> > <wsdl:definitions targetNamespace="http://auger.fzk.org" 
> xmlns:apachesoap="
> > http://xml.apache.org/xml-soap" xmlns:impl="http://auger.fzk.org" 
> xmlns:intf="
> > http://auger.fzk.org" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" 
> > xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="
> > http://www.w3.org/2001/XMLSchema">
> > <!--WSDL created by Apache Axis version: 1.4
> Built on Apr 22, 2006 
> > (06:55:48 PDT)-->
> >  <wsdl:types>
> >   <schema elementFormDefault="qualified" 
> targetNamespace="http://auger.fzk.org
> > " xmlns="http://www.w3.org/2001/XMLSchema">
> >    <element name="add">
> >     <complexType>
> >      <sequence>
> >       <element name="a" type="xsd:int"/>
> >       <element name="b" type="xsd:int"/>
> >      </sequence>
> >     </complexType>
> >    </element>
> >    <element name="addResponse">
> >     <complexType>
> >      <sequence>
> >       <element name="addReturn" type="xsd:int"/>
> >      </sequence>
> >     </complexType>
> >    </element>
> >   </schema>
> >  </wsdl:types>
> > 
> >    <wsdl:message name="addResponse">
> > 
> >       <wsdl:part element="impl:addResponse" name="parameters"/>
> > 
> >    </wsdl:message>
> > 
> >    <wsdl:message name="addRequest">
> > 
> >       <wsdl:part element="impl:add" name="parameters"/>
> > 
> >    </wsdl:message>
> > 
> >    <wsdl:portType name="MathAdd">
> > 
> >       <wsdl:operation name="add">
> > 
> >          <wsdl:input message="impl:addRequest" name="addRequest"/>
> > 
> >          <wsdl:output message="impl:addResponse" name="addResponse"/>
> > 
> >       </wsdl:operation>
> > 
> >    </wsdl:portType>
> > 
> >    <wsdl:binding name="TestServiceSoapBinding" type="impl:MathAdd">
> > 
> >       <wsdlsoap:binding style="document" transport="http://schemas.
> > xmlsoap.org/soap/http"/>
> > 
> >       <wsdl:operation name="add">
> > 
> >          <wsdlsoap:operation soapAction=""/>
> > 
> >          <wsdl:input name="addRequest">
> > 
> >             <wsdlsoap:body use="literal"/>
> > 
> >          </wsdl:input>
> > 
> >          <wsdl:output name="addResponse">
> > 
> >             <wsdlsoap:body use="literal"/>
> > 
> >          </wsdl:output>
> > 
> >       </wsdl:operation>
> > 
> >    </wsdl:binding>
> > 
> >    <wsdl:service name="MathAddService">
> > 
> >       <wsdl:port binding="impl:TestServiceSoapBinding" 
> name="TestService">
> > 
> >          <wsdlsoap:address 
> location="http://localhost:9090/axis/TestService"/>
> > 
> >       </wsdl:port>
> > 
> >    </wsdl:service>
> > 
> > </wsdl:definitions>
> > 
> > -- 
> > Der GMX SmartSurfer hilft bis zu 70% Ihrer Onlinekosten zu sparen! 
> > Ideal für Modem und ISDN: http://www.gmx.net/de/go/smartsurfer
> > 
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: axis-user-unsubscribe@ws.apache.org
> > For additional commands, e-mail: axis-user-help@ws.apache.org
> > 
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: axis-user-unsubscribe@ws.apache.org
> For additional commands, e-mail: axis-user-help@ws.apache.org

-- 
Der GMX SmartSurfer hilft bis zu 70% Ihrer Onlinekosten zu sparen! 
Ideal für Modem und ISDN: http://www.gmx.net/de/go/smartsurfer

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


Re: Undeclared namespace prefix "SOAP-ENV"

Posted by Nadir Amra <am...@us.ibm.com>.
Ensure you are using SOAP 1.1.   !.2 is not supported as of yet.

Nadir K. Amra


"Michael Sutter" <Su...@gmx.li> wrote on 08/21/2007 09:39:15 AM:

> Hello list,
> 
> I have a problem by accessing a AXISCPP service from an AXIS(2) Java
> client. I have a very simple WSDL, having only one method adding two
> numbers. I must access this service over a Java client, if it is 
> possible over a AXIS2 Java client. 
> 
> The wsdl is generated from a Java Class with java org.apache.axis.
> wsdl.Java2WSDL -l"http://localhost:9090/axis/TestService" -uLITERAL 
> -yDOCUMENT -nauger  org.fzk.auger.MathAdd
> 
> When I generate the client stubs and access the service I always get
> an Exception:
> org.apache.axis2.AxisFault: com.ctc.wstx.exc.WstxParsingException: 
> Undeclared namespace prefix "SOAP-ENV"
>  at [row,col {unknown-source}]: [2,19]
>         at org.apache.axis2.transport.TransportUtils.
> createSOAPMessage(TransportUtils.java:81)
>         at org.apache.axis2.description.OutInAxisOperationClient.
> send(OutInAxisOperation.java:356)
>         at org.apache.axis2.description.OutInAxisOperationClient.
> execute(OutInAxisOperation.java:294)
>         at 
org.fzk.auger.MathAddServiceStub.add(MathAddServiceStub.java:151)
>         at org.fzk.auger.Client.main(Client.java:14)
> 
> Does anybody know how I can solve the exception? Or it is not 
> possible to access a c++ service generated with -uLITERAL -yDOCUMENT
> - where I think the problem is from.
> 
> You can find the WSDL below - but I dont't think that it is wrong.
> 
> Kind regards 
> Michael
> 
> <?xml version="1.0" encoding="UTF-8"?>
> <wsdl:definitions targetNamespace="http://auger.fzk.org" 
xmlns:apachesoap="
> http://xml.apache.org/xml-soap" xmlns:impl="http://auger.fzk.org" 
xmlns:intf="
> http://auger.fzk.org" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" 
> xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="
> http://www.w3.org/2001/XMLSchema">
> <!--WSDL created by Apache Axis version: 1.4
Built on Apr 22, 2006 
> (06:55:48 PDT)-->
>  <wsdl:types>
>   <schema elementFormDefault="qualified" 
targetNamespace="http://auger.fzk.org
> " xmlns="http://www.w3.org/2001/XMLSchema">
>    <element name="add">
>     <complexType>
>      <sequence>
>       <element name="a" type="xsd:int"/>
>       <element name="b" type="xsd:int"/>
>      </sequence>
>     </complexType>
>    </element>
>    <element name="addResponse">
>     <complexType>
>      <sequence>
>       <element name="addReturn" type="xsd:int"/>
>      </sequence>
>     </complexType>
>    </element>
>   </schema>
>  </wsdl:types>
> 
>    <wsdl:message name="addResponse">
> 
>       <wsdl:part element="impl:addResponse" name="parameters"/>
> 
>    </wsdl:message>
> 
>    <wsdl:message name="addRequest">
> 
>       <wsdl:part element="impl:add" name="parameters"/>
> 
>    </wsdl:message>
> 
>    <wsdl:portType name="MathAdd">
> 
>       <wsdl:operation name="add">
> 
>          <wsdl:input message="impl:addRequest" name="addRequest"/>
> 
>          <wsdl:output message="impl:addResponse" name="addResponse"/>
> 
>       </wsdl:operation>
> 
>    </wsdl:portType>
> 
>    <wsdl:binding name="TestServiceSoapBinding" type="impl:MathAdd">
> 
>       <wsdlsoap:binding style="document" transport="http://schemas.
> xmlsoap.org/soap/http"/>
> 
>       <wsdl:operation name="add">
> 
>          <wsdlsoap:operation soapAction=""/>
> 
>          <wsdl:input name="addRequest">
> 
>             <wsdlsoap:body use="literal"/>
> 
>          </wsdl:input>
> 
>          <wsdl:output name="addResponse">
> 
>             <wsdlsoap:body use="literal"/>
> 
>          </wsdl:output>
> 
>       </wsdl:operation>
> 
>    </wsdl:binding>
> 
>    <wsdl:service name="MathAddService">
> 
>       <wsdl:port binding="impl:TestServiceSoapBinding" 
name="TestService">
> 
>          <wsdlsoap:address 
location="http://localhost:9090/axis/TestService"/>
> 
>       </wsdl:port>
> 
>    </wsdl:service>
> 
> </wsdl:definitions>
> 
> -- 
> Der GMX SmartSurfer hilft bis zu 70% Ihrer Onlinekosten zu sparen! 
> Ideal für Modem und ISDN: http://www.gmx.net/de/go/smartsurfer
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: axis-user-unsubscribe@ws.apache.org
> For additional commands, e-mail: axis-user-help@ws.apache.org
> 


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