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 webservice guy <ws...@rediffmail.com> on 2006/01/21 11:34:15 UTC

Re: WELCOME to axis-user@ws.apache.org

  
Dear ALL

I am new bie to web service and facing problem in Client program (DII type, java bean) using axis with tomcat on windows.

I need help urgently please try to help me.. Am I missing something any working example with axis will be very helpful. 

Tons of thanks in advance..

Kind regards 
wsguy



Following are the code


WSDL :
<?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitions targetNamespace="http://localhost:8080/axis/HelloService2.jws" xmlns:apachesoap="http://xml.apache.org/xml-soap" xmlns:impl="http://localhost:8080/axis/HelloService2.jws" xmlns:intf="http://localhost:8080/axis/HelloService2.jws" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns1="http://DefaultNamespace" 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.3
Built on Oct 05, 2005 (05:23:37 EDT)-->
 <wsdl:types>
  <schema targetNamespace="http://DefaultNamespace" xmlns="http://www.w3.org/2001/XMLSchema">
   <import namespace="http://localhost:8080/axis/HelloService2.jws"/>
   <import namespace="http://schemas.xmlsoap.org/soap/encoding/"/>
   <complexType name="HelloBean">
    <sequence>
     <element name="name" nillable="true" type="xsd:string"/>
    </sequence>
   </complexType>
  </schema>
  <schema targetNamespace="http://localhost:8080/axis/HelloService2.jws" xmlns="http://www.w3.org/2001/XMLSchema">
   <import namespace="http://DefaultNamespace"/>
   <import namespace="http://schemas.xmlsoap.org/soap/encoding/"/>
   <complexType name="ArrayOf_tns1_HelloBean">
    <complexContent>
     <restriction base="soapenc:Array">
      <attribute ref="soapenc:arrayType" wsdl:arrayType="tns1:HelloBean[]"/>
     </restriction>
    </complexContent>
   </complexType>
  </schema>
 </wsdl:types>
   <wsdl:message name="helloBeanResponse">
      <wsdl:part name="helloBeanReturn" type="tns1:HelloBean"/>
   </wsdl:message>
   <wsdl:message name="helloBeanArrayResponse">
      <wsdl:part name="helloBeanArrayReturn" type="impl:ArrayOf_tns1_HelloBean"/>
   </wsdl:message>
   <wsdl:message name="helloBeanRequest">
      <wsdl:part name="name" type="tns1:HelloBean"/>
   </wsdl:message>
   <wsdl:message name="helloBeanArrayRequest">
      <wsdl:part name="names" type="impl:ArrayOf_tns1_HelloBean"/>
   </wsdl:message>
   <wsdl:portType name="HelloService2">
      <wsdl:operation name="helloBean" parameterOrder="name">
         <wsdl:input message="impl:helloBeanRequest" name="helloBeanRequest"/>
         <wsdl:output message="impl:helloBeanResponse" name="helloBeanResponse"/>
      </wsdl:operation>
      <wsdl:operation name="helloBeanArray" parameterOrder="names">
         <wsdl:input message="impl:helloBeanArrayRequest" name="helloBeanArrayRequest"/>
         <wsdl:output message="impl:helloBeanArrayResponse" name="helloBeanArrayResponse"/>
      </wsdl:operation>
   </wsdl:portType>
   <wsdl:binding name="HelloService2SoapBinding" type="impl:HelloService2">
      <wsdlsoap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
      <wsdl:operation name="helloBean">
         <wsdlsoap:operation soapAction=""/>
         <wsdl:input name="helloBeanRequest">
            <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://DefaultNamespace" use="encoded"/>
         </wsdl:input>
         <wsdl:output name="helloBeanResponse">
            <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://localhost:8080/axis/HelloService2.jws" use="encoded"/>
         </wsdl:output>
      </wsdl:operation>
      <wsdl:operation name="helloBeanArray">
         <wsdlsoap:operation soapAction=""/>
         <wsdl:input name="helloBeanArrayRequest">
            <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://DefaultNamespace" use="encoded"/>
         </wsdl:input>
         <wsdl:output name="helloBeanArrayResponse">
            <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://localhost:8080/axis/HelloService2.jws" use="encoded"/>
         </wsdl:output>
      </wsdl:operation>
   </wsdl:binding>
   <wsdl:service name="HelloService2Service">
      <wsdl:port binding="impl:HelloService2SoapBinding" name="HelloService2">
         <wsdlsoap:address location="http://localhost:8080/axis/HelloService2.jws"/>
      </wsdl:port>
   </wsdl:service>
</wsdl:definitions>

Hello Bean:
/**	A simple bean for testing	*/
public class HelloBean {

	private	String name;
	public String getName() {
		return name;
	}
	public void setName(String name) {
		this.name = name;
	}
	public String toString() {
		return name;
	}
}

Hello Service 

/**	Simple test of HelloBean and HelloBean[] parameters and return values	*/
public class HelloService2 {
	/**	Says hello to one person	*/
	public HelloBean helloBean(HelloBean name) {
		HelloBean ret = new HelloBean();
		ret.setName(" CONCATING HELLO , " + name.getName());
		return ret;
	}
	/**	Says hello to many people	*/
	public HelloBean[] helloBeanArray(HelloBean[] names) {
		HelloBean[] ret = new HelloBean[names.length];
		for (int i = 0; i < names.length; i++) {
			ret[i] = new HelloBean();
			ret[i].setName("Hello Mr. --> " + names[i].getName());
		}
		return ret;
	}
}

Client 


	public static void main(String[] args) throws Exception {
	   /*
	    if (args.length < 2) {
	      System.err.println("Usage: java HelloClient2 SOAP-router-URL name [name ...]");
	      System.exit(1);
	    }
	    */
	      HelloBean hb = new HelloBean( );
	      i1.setName("TestName");
	      Service  service = new Service();
       	      Call call= (Call) service.createCall();
       	      System.out.println("call");
       	      QName qName = new QName("http://www.w3.org/2001/XMLSchema", "HelloBean");
       	      System.out.println("qName1");
       	      call.registerTypeMapping(HelloBean.class,qName, new BeanSerializerFactory(HelloBean.class,qName), new BeanDeserializerFactory(HelloBean.class,qName));
	      System.out.println("qName2");
	      call.setTargetEndpointAddress( new java.net.URL("http://localhost:8080/axis/HelloService2.jws") );
	        System.out.println("qName3");
              call.setOperationName( "helloBean" );
                System.out.println("qName4");
              call.addParameter( qName, XMLType.XSD_ANYTYPE, ParameterMode.IN);
                System.out.println("setReturnType");
              call.setReturnType( org.apache.axis.encoding.XMLType.XSD_ANYTYPE );
          
              HelloBean ret = (HelloBean) call.invoke( new Object [] {hb});
               System.out.println("ret5");
              System.out.println("Got result working  : " + ret.getName());
            

       	   }

Exception :
Exception in thread "main" AxisFault
 faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException  faultSubcode:
 faultString: org.xml.sax.SAXException: Deserializing parameter 'HelloBean':  could not find deserializer for type {http:// http://www.w3.org/2001/XMLSchema}HelloBean
 faultActor:
 faultNode:
 faultDetail:
        {http://xml.apache.org/axis/}hostname:machine name 



On Sat, 21 Jan 2006 axis-user-help@ws.apache.org wrote :
>Hi! This is the ezmlm program. I'm managing the
>axis-user@ws.apache.org mailing list.
>
>Acknowledgment: I have added the address
>
>    wsguy@rediffmail.com
>
>to the axis-user mailing list.
>
>Welcome to axis-user@ws.apache.org!
>
>Please save this message so that you know the address you are
>subscribed under, in case you later want to unsubscribe or change your
>subscription address.
>
>To unsubscribe, send a message to:
>
>     <ax...@ws.apache.org>
>
>
>--- Administrative commands for the axis-user list ---
>
>I can handle administrative requests automatically. Please
>do not send them to the list address! Instead, send
>your message to the correct command address:
>
>To subscribe to the list, send a message to:
>    <ax...@ws.apache.org>
>
>To remove your address from the list, send a message to:
>    <ax...@ws.apache.org>
>
>Send mail to the following for info and FAQ for this list:
>    <ax...@ws.apache.org>
>    <ax...@ws.apache.org>
>
>To get messages 123 through 145 (a maximum of 100 per request), mail:
>    <ax...@ws.apache.org>
>
>To get an index with subject and author for messages 123-456 , mail:
>    <ax...@ws.apache.org>
>
>They are always returned as sets of 100, max 2000 per request,
>so you'll actually get 100-499.
>
>To receive all messages with the same subject as message 12345,
>send an empty message to:
>    <ax...@ws.apache.org>
>
>The messages do not really need to be empty, but I will ignore
>their content. Only the ADDRESS you send to is important.
>
>You can start a subscription for an alternate address,
>for example "john@host.domain", just add a hyphen and your
>address (with '=' instead of '@') after the command word:
><ax...@ws.apache.org>
>
>To stop subscription for this address, mail:
><ax...@ws.apache.org>
>
>In both cases, I'll send a confirmation message to that address. When
>you receive it, simply reply to it to complete your subscription.
>
>If despite following these instructions, you do not get the
>desired results, please contact my owner at
>axis-user-owner@ws.apache.org. Please be patient, my owner is a
>lot slower than I am ;-)
>
>--- Enclosed is a copy of the request I received.
>
>Return-Path: <ws...@rediffmail.com>
>Received: (qmail 31576 invoked by uid 99); 21 Jan 2006 09:59:20 -0000
>Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49)
>     by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 21 Jan 2006 01:59:20 -0800
>X-ASF-Spam-Status: No, hits=0.5 required=10.0
> 	tests=DNS_FROM_RFC_ABUSE,HTML_MESSAGE,MSGID_FROM_MTA_HEADER
>X-Spam-Check-By: apache.org
>Received-SPF: pass (asf.osuosl.org: local policy)
>Received: from [202.54.124.151] (HELO rediffmail.com) (202.54.124.151)
>     by apache.org (qpsmtpd/0.29) with SMTP; Sat, 21 Jan 2006 01:59:19 -0800
>Received: (qmail 29834 invoked by uid 510); 21 Jan 2006 09:58:41 -0000
>Date: 21 Jan 2006 09:58:41 -0000
>Message-ID: <20...@webmail6.rediffmail.com>
>Received: from unknown (203.145.173.2) by rediffmail.com via HTTP; 21 jan 2006 09:58:41 -0000
>MIME-Version: 1.0
> From: "webservice guy" <ws...@rediffmail.com>
>Reply-To: "webservice guy" <ws...@rediffmail.com>
>To: axis-user-sc.1137837014.ddgjjmjkalelifcclnij-wsguy=rediffmail.com@ws.apache.org
>Subject: Re: confirm subscribe to axis-user@ws.apache.org
>Content-type: multipart/alternative;
> 	boundary="Next_1137837521---0-202.54.124.151-29822"
>X-Virus-Checked: Checked by ClamAV on apache.org
>
>  This is a multipart mime message
>
>
>--Next_1137837521---0-202.54.124.151-29822
>Content-type: text/plain;
> 	charset=iso-8859-1
>Content-Transfer-Encoding: quoted-printable
>Content-Disposition: inline
>
>  =A0=0A=0A=0AOn Sat, 21 Jan 2006 axis-user-help@ws.apache.org wrote :=0A>Hi=
>! This is the ezmlm program. I'm managing the=0A>axis-user@ws.apache.org ma=
>iling list.=0A>=0A>To confirm that you would like=0A>=0A>    wsguy@rediffma=
>il.com=0A>=0A>added to the axis-user mailing list, please send=0A>an empty =
>reply to this address:=0A>=0A>    axis-user-sc.1137837014.ddgjjmjkalelifccl=
>nij-wsguy=3Drediffmail.com@ws.apache.org=0A>=0A>Usually, this happens when =
>you just hit the "reply" button.=0A>If this does not work, simply copy the =
>address and paste it into=0A>the "To:" field of a new message.=0A>=0A>This =
>confirmation serves two purposes. First, it verifies that I am able=0A>to g=
>et mail through to you. Second, it protects you in case someone=0A>forges a=
>  subscription request in your name.=0A>=0A>=0A>--- Administrative commands =
>for the axis-user list ---=0A>=0A>I can handle administrative requests auto=
>matically. Please=0A>do not send them to the list address! Instead, send=0A=
> >your message to the correct command address:=0A>=0A>To subscribe to the li=
>st, send a message to:=0A>    <ax...@ws.apache.org>=0A>=0A>To=
>  remove your address from the list, send a message to:=0A>    <axis-user-un=
>subscribe@ws.apache.org>=0A>=0A>Send mail to the following for info and FAQ=
>  for this list:=0A>    <ax...@ws.apache.org>=0A>    <axis-user-faq=
>@ws.apache.org>=0A>=0A>To get messages 123 through 145 (a maximum of 100 pe=
>r request), mail:=0A>    <ax...@ws.apache.org>=0A>=0A>To ge=
>t an index with subject and author for messages 123-456 , mail:=0A>    <axi=
>s-user-index.123_456@ws.apache.org>=0A>=0A>They are always returned as sets=
>  of 100, max 2000 per request,=0A>so you'll actually get 100-499.=0A>=0A>To=
>  receive all messages with the same subject as message 12345,=0A>send an em=
>pty message to:=0A>    <ax...@ws.apache.org>=0A>=0A>The me=
>ssages do not really need to be empty, but I will ignore=0A>their content. =
>Only the ADDRESS you send to is important.=0A>=0A>You can start a subscript=
>ion for an alternate address,=0A>for example "john@host.domain", just add a=
>  hyphen and your=0A>address (with '=3D' instead of '@') after the command w=
>ord:=0A><ax...@ws.apache.org>=0A>=0A>To st=
>op subscription for this address, mail:=0A><axis-user-unsubscribe-john=3Dho=
>st.domain@ws.apache.org>=0A>=0A>In both cases, I'll send a confirmation mes=
>sage to that address. When=0A>you receive it, simply reply to it to complet=
>e your subscription.=0A>=0A>If despite following these instructions, you do=
>  not get the=0A>desired results, please contact my owner at=0A>axis-user-ow=
>ner@ws.apache.org. Please be patient, my owner is a=0A>lot slower than I am=
>  ;-)=0A>=0A>--- Enclosed is a copy of the request I received.=0A>=0A>Return=
>-Path: <ws...@rediffmail.com>=0A>Received: (qmail 25800 invoked by uid 99);=
>  21 Jan 2006 09:50:14 -0000=0A>Received: from asf.osuosl.org (HELO asf.osuo=
>sl.org) (140.211.166.49)=0A>     by apache.org (qpsmtpd/0.29) with ESMTP; S=
>at, 21 Jan 2006 01:50:14 -0800=0A>X-ASF-Spam-Status: No, hits=3D3.6 require=
>d=3D10.0=0A> 	tests=3DDNS_FROM_RFC_ABUSE,HTML_IMAGE_ONLY_04,HTML_MESSAGE,HT=
>ML_SHORT_LINK_IMG_1,MSGID_FROM_MTA_HEADER=0A>X-Spam-Check-By: apache.org=0A=
> >Received-SPF: pass (asf.osuosl.org: local policy)=0A>Received: from [202.5=
>4.124.151] (HELO rediffmail.com) (202.54.124.151)=0A>     by apache.org (qp=
>smtpd/0.29) with SMTP; Sat, 21 Jan 2006 01:50:14 -0800=0A>Received: (qmail =
>16855 invoked by uid 510); 21 Jan 2006 09:49:36 -0000=0A>Date: 21 Jan 2006 =
>09:49:36 -0000=0A>Message-ID: <20060121094936.16854.qmail@webmail6.rediffma=
>il.com>=0A>Received: from unknown (203.145.173.2) by rediffmail.com via HTT=
>P; 21 jan 2006 09:49:35 -0000=0A>MIME-Version: 1.0=0A> From: "webservice gu=
>y" <ws...@rediffmail.com>=0A>Reply-To: "webservice guy" <wsguy@rediffmail.c=
>om>=0A>To: axis-user-subscribe@ws.apache.org=0A>Subject: subscribe=0A>Conte=
>nt-type: multipart/alternative;=0A> 	boundary=3D"Next_1137836975---0-202.54=
>.124.151-16841"=0A>X-Virus-Checked: Checked by ClamAV on apache.org=0A>=0A>=
>   This is a multipart mime message=0A>=0A>=0A>--Next_1137836975---0-202.54.=
>124.151-16841=0A>Content-type: text/plain;=0A> 	charset=3Diso-8859-1=0A>Con=
>tent-Transfer-Encoding: quoted-printable=0A>Content-Disposition: inline=0A>=
>=0A>  =3DA0=3D0Asubscribe=0A>--Next_1137836975---0-202.54.124.151-16841=0A>=
>Content-type: text/html;=0A> 	charset=3Diso-8859-1=0A>Content-Transfer-Enco=
>ding: quoted-printable=0A>Content-Disposition: inline=0A>=0A><P>=3D0A=A0 <B=
>R>=3D0Asubscribe=3D0A</P>=3D0A<br><br>=3D0A<a href=3D3D"http://adworks=3D=
>=0A>.rediff.com/cgi-bin/AdWorks/sigclick.cgi/www.rediff.com/signature-home.=
>htm/=3D=0A>1507191490@Middle5?PARTNER=3D3D3"><IMG SRC=3D3D"http://adworks.r=
>ediff.com/cgi-b=3D=0A>in/AdWorks/sigimpress.cgi/www.rediff.com/signature-ho=
>me.htm/1963059423@Midd=3D=0A>le5?OAS_query=3D3Dnull&PARTNER=3D3D3" BORDER=
>=3D3D0 VSPACE=3D3D0 HSPACE=3D3D0></a>=3D0A=0A>--Next_1137836975---0-202.54.=
>124.151-16841--=0A>=0A
>--Next_1137837521---0-202.54.124.151-29822
>Content-type: text/html;
> 	charset=iso-8859-1
>Content-Transfer-Encoding: quoted-printable
>Content-Disposition: inline
>
><P>=0A  <BR>=0A<BR>=0A<BR>=0AOn Sat, 21 Jan 2006 axis-user-help@ws.apa=
>che.org wrote :<BR>=0A>Hi! This is the ezmlm program. I'm managing the<B=
>R>=0A>axis-user@ws.apache.org mailing list.<BR>=0A><BR>=0A>To conf=
>irm that you would like<BR>=0A><BR>=0A>    wsguy@rediffmail=
>.com<BR>=0A><BR>=0A>added to the axis-user mailing list, please send<=
>BR>=0A>an empty reply to this address:<BR>=0A><BR>=0A>   =
>; axis-user-sc.1137837014.ddgjjmjkalelifcclnij-wsguy=3Drediffmail.com@ws.ap=
>ache.org<BR>=0A><BR>=0A>Usually, this happens when you just hit the &=
>quot;reply" button.<BR>=0A>If this does not work, simply copy the a=
>ddress and paste it into<BR>=0A>the "To:" field of a new messa=
>ge.<BR>=0A><BR>=0A>This confirmation serves two purposes. First, it v=
>erifies that I am able<BR>=0A>to get mail through to you. Second, it pro=
>tects you in case someone<BR>=0A>forges a subscription request in your n=
>ame.<BR>=0A><BR>=0A><BR>=0A>--- Administrative commands for the ax=
>is-user list ---<BR>=0A><BR>=0A>I can handle administrative requests =
>automatically. Please<BR>=0A>do not send them to the list address! Inste=
>ad, send<BR>=0A>your message to the correct command address:<BR>=0A><=
>BR>=0A>To subscribe to the list, send a message to:<BR>=0A>  &nb=
>sp; <ax...@ws.apache.org><BR>=0A><BR>=0A>To remov=
>e your address from the list, send a message to:<BR>=0A>    &l=
>t;axis-user-unsubscribe@ws.apache.org><BR>=0A><BR>=0A>Send mail to=
>  the following for info and FAQ for this list:<BR>=0A>    <=
>axis-user-info@ws.apache.org><BR>=0A>    <axis-user-faq@=
>ws.apache.org><BR>=0A><BR>=0A>To get messages 123 through 145 (a m=
>aximum of 100 per request), mail:<BR>=0A>    <axis-user-get=
>.123_145@ws.apache.org><BR>=0A><BR>=0A>To get an index with subjec=
>t and author for messages 123-456 , mail:<BR>=0A>    <axis-=
>user-index.123_456@ws.apache.org><BR>=0A><BR>=0A>They are always r=
>eturned as sets of 100, max 2000 per request,<BR>=0A>so you'll actually =
>get 100-499.<BR>=0A><BR>=0A>To receive all messages with the same sub=
>ject as message 12345,<BR>=0A>send an empty message to:<BR>=0A> =
>    <ax...@ws.apache.org><BR>=0A><BR>=0A>T=
>he messages do not really need to be empty, but I will ignore<BR>=0A>the=
>ir content. Only the ADDRESS you send to is important.<BR>=0A><BR>=0A>=
>;You can start a subscription for an alternate address,<BR>=0A>for examp=
>le "john@host.domain", just add a hyphen and your<BR>=0A>addre=
>ss (with '=3D' instead of '@') after the command word:<BR>=0A><axis-u=
>ser-subscribe-john=3Dhost.domain@ws.apache.org><BR>=0A><BR>=0A>To =
>stop subscription for this address, mail:<BR>=0A><axis-user-unsubscri=
>be-john=3Dhost.domain@ws.apache.org><BR>=0A><BR>=0A>In both cases,=
>  I'll send a confirmation message to that address. When<BR>=0A>you recei=
>ve it, simply reply to it to complete your subscription.<BR>=0A><BR>=0A&=
>gt;If despite following these instructions, you do not get the<BR>=0A>de=
>sired results, please contact my owner at<BR>=0A>axis-user-owner@ws.apac=
>he.org. Please be patient, my owner is a<BR>=0A>lot slower than I am ;-)=
><BR>=0A><BR>=0A>--- Enclosed is a copy of the request I received.<BR>=
>=0A><BR>=0A>Return-Path: <ws...@rediffmail.com><BR>=0A>Recei=
>ved: (qmail 25800 invoked by uid 99); 21 Jan 2006 09:50:14 -0000<BR>=0A>=
>Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49)<BR>=0A=
>>     by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 21 Jan 200=
>6 01:50:14 -0800<BR>=0A>X-ASF-Spam-Status: No, hits=3D3.6 required=3D10.=
>0<BR>=0A>      tests=3DDNS_FROM_RFC_ABUSE,HTML_IMAGE_ONLY=
>_04,HTML_MESSAGE,HTML_SHORT_LINK_IMG_1,MSGID_FROM_MTA_HEADER<BR>=0A>X-Sp=
>am-Check-By: apache.org<BR>=0A>Received-SPF: pass (asf.osuosl.org: local=
>  policy)<BR>=0A>Received: from [202.54.124.151] (HELO rediffmail.com) (2=
>02.54.124.151)<BR>=0A>     by apache.org (qpsmtpd/0.29) with S=
>MTP; Sat, 21 Jan 2006 01:50:14 -0800<BR>=0A>Received: (qmail 16855 invok=
>ed by uid 510); 21 Jan 2006 09:49:36 -0000<BR>=0A>Date: 21 Jan 2006 09:4=
>9:36 -0000<BR>=0A>Message-ID: <20060121094936.16854.qmail@webmail6.re=
>diffmail.com><BR>=0A>Received: from unknown (203.145.173.2) by rediff=
>mail.com via HTTP; 21 jan 2006 09:49:35 -0000<BR>=0A>MIME-Version: 1.0<B=
>R>=0A> From: "webservice guy" <ws...@rediffmail.com><BR>=
>=0A>Reply-To: "webservice guy" <ws...@rediffmail.com><BR=
> >=0A>To: axis-user-subscribe@ws.apache.org<BR>=0A>Subject: subscribe<=
>BR>=0A>Content-type: multipart/alternative;<BR>=0A>     &nb=
>sp;boundary=3D"Next_1137836975---0-202.54.124.151-16841"<BR>=0A&g=
>t;X-Virus-Checked: Checked by ClamAV on apache.org<BR>=0A><BR>=0A>&nb=
>sp; This is a multipart mime message<BR>=0A><BR>=0A><BR>=0A>--Next=
>_1137836975---0-202.54.124.151-16841<BR>=0A>Content-type: text/plain;<BR=
> >=0A>      charset=3Diso-8859-1<BR>=0A>Content-Transfe=
>r-Encoding: quoted-printable<BR>=0A>Content-Disposition: inline<BR>=0A&g=
>t;<BR>=0A>  =3DA0=3D0Asubscribe<BR>=0A>--Next_1137836975---0-202=
>.54.124.151-16841<BR>=0A>Content-type: text/html;<BR>=0A>   &nbs=
>p;  charset=3Diso-8859-1<BR>=0A>Content-Transfer-Encoding: quoted-p=
>rintable<BR>=0A>Content-Disposition: inline<BR>=0A><BR>=0A><P&g=
>t;=3D0A  <BR>=3D0Asubscribe=3D0A</P>=3D0A<br><br&=
>gt;=3D0A<a href=3D3D"http://adworks=3D<BR>=0A>.rediff.com/cgi-bi=
>n/AdWorks/sigclick.cgi/www.rediff.com/signature-home.htm/=3D<BR>=0A>1507=
>191490@Middle5?PARTNER=3D3D3"><IMG SRC=3D3D"http://adworks.=
>rediff.com/cgi-b=3D<BR>=0A>in/AdWorks/sigimpress.cgi/www.rediff.com/sign=
>ature-home.htm/1963059423@Midd=3D<BR>=0A>le5?OAS_query=3D3Dnull&PART=
>NER=3D3D3" BORDER=3D3D0 VSPACE=3D3D0 HSPACE=3D3D0></a>=3D0A<B=
>R>=0A>--Next_1137836975---0-202.54.124.151-16841--<BR>=0A><BR>=0A=0A<=
>/P>=0A<br><br>=0A<a href=3D"http://adworks.rediff.com/cgi-bin/AdWorks/sigcl=
>ick.cgi/www.rediff.com/signature-home.htm/1507191490@Middle5?PARTNER=3D3"><=
>IMG SRC=3D"http://adworks.rediff.com/cgi-bin/AdWorks/sigimpress.cgi/www.red=
>iff.com/signature-home.htm/1963059423@Middle5?OAS_query=3Dnull&PARTNER=3D3"=
>  BORDER=3D0 VSPACE=3D0 HSPACE=3D0></a>=0A
>--Next_1137837521---0-202.54.124.151-29822--
>