[prev in list] [next in list] [prev in thread] [next in thread] 

List:       apollo-dev
Subject:    Re: Problem to call web service through WSDL2Java
From:       "Sachin Sisodia" <sachin.sisodia () gmail ! com>
Date:       2007-03-13 2:39:22
Message-ID: acee60a50703121939j34e61feaj57ebde20116635c () mail ! gmail ! com
[Download RAW message or body]

Hi Jose,
That problem has been resolved after giving a "Anonymous" access to target
service. Thanks for your response. I have posted one more problem where I am
unable to pass stream value  as an input. I would appreciate if you can
response on that also.

Regards
Sachin


On 3/9/07, José Antonio Sánchez <getaceres@gmail.com> wrote:
> 
> Sorry, I thought you were using WSRF because I have received that
> e-mail in that list and I didn't realize that the first time I
> received it from axis-user list, so I suppose you are using Axis 1.X
> here.
> Just to be sure: You have created the wsdl file that you sent me by
> hand. It has one method that receives a string. With that wsdl you
> have created a skeleton service that you are implementing. That
> service gets a string as input and calls another service with that
> string (the 'input' variable that I requested before contains that
> string?).
> I don't know exactly how your service is implemented and all your code
> but I suppose that in some parameter you pass to the Call object it
> may be a null object or an empty string so serialization of the
> request fails.
> 
> On 3/9/07, Sachin Sisodia <sachin.sisodia@gmail.com> wrote:
> > Hi Jose,
> > Let me clear our requirement, We have webMethods integration server with
> us
> > and it is containing some inbuilt services. what we need to do here to
> call
> > these services from outside through web services.
> > 
> > I have created WSDL file for the mentioned service. That service is
> doing
> > nothing just mapping input string variable to output variable as shown
> > below:
> > 
> > 
> -------------------------------------------------------------------------------------------------------------------------
> 
> > 
> > 
> > 
> > // pipeline
> > IDataCursor pipelineCursor = pipeline.getCursor();
> > String inputVariable = IDataUtil.getString( pipelineCursor, "input" );
> > pipelineCursor.destroy();
> > 
> > // pipeline
> > IDataCursor pipelineCursor_1 = pipeline.getCursor();
> > IDataUtil.put( pipelineCursor_1, "output", inputVariable );
> > pipelineCursor_1.destroy();
> > -----------------------------------------------------------------
> > 
> > I am using help from WSDL2JAVA to acheive it but getting the error in
> > runtime.I am not sure what I need to do next.
> > 
> > 
> > Regards
> > Sachin
> > 
> > 
> > 
> > 
> > 
> > 
> > On 3/9/07, José Antonio Sánchez <getaceres@gmail.com> wrote:
> > > You don't have any resource property document, so, why are you using
> > > WSRF? It's easier to use Axis or Axis2 to develop simple services.
> > > Also, if you are starting a new project, consider using Muse2 instead
> > > of Apache WSRF since it implements WSRF as well and it's easier to use
> > > and in more active development. Look for it in:
> > > 
> > > http://ws.apache.org/muse
> > > 
> > > For your problem, it's not a matter of the invoked wsdl but I was
> > > asking about your client code, specially what's in the input variable.
> > > 
> > > On 3/9/07, Sachin Sisodia < sachin.sisodia@gmail.com> wrote:
> > > > Hi Jose,
> > > > Please find the attached WSDL file that I have generated for web
> > service. I
> > > > am invoking a service from webMethods and it is simple service for
> > printing
> > > > log file. Thanks for any help in this regard as I stuck in it from
> past
> > 2
> > > > days.
> > > > 
> > > > 
> > > > Regards
> > > > Sachin
> > > > 
> > > > 
> > > > 
> > > > On 3/8/07, José Antonio Sánchez < getaceres@gmail.com> wrote:
> > > > > What's the complete stack trace?
> > > > > 
> > > > > Anyway, maybe the problem is here:
> > > > > 
> > > > > java.lang.Object _resp = _call.invoke(new java.lang.Object []
> > {input});
> > > > > 
> > > > > Could you put what input is?
> > > > > 
> > > > > On 3/8/07, Sachin Sisodia <sachin.sisodia@gmail.com> wrote:
> > > > > > Hi Jose,
> > > > > > Thanks for your response on this. I have tried with your
> suggestion
> > and
> > > > > > changed the statement as folllow:
> > > > > > _call.setSOAPActionURI(" http://localhost/service/testWS");
> > > > > > 
> > > > > > But still I am getting the same error message. I would
> appreciate
> > for
> > > > your
> > > > > > help in this regard.
> > > > > > 
> > > > > > 
> > > > > > Regards
> > > > > > Sachin
> > > > > > 
> > > > > > 
> > > > > > On 3/8/07, José Antonio Sánchez <getaceres@gmail.com> wrote:
> > > > > > > 
> > > > > > > Maybe this call is the problem.
> > > > > > > 
> > > > > > > _call.setSOAPActionURI("");
> > > > > > > 
> > > > > > > Try setting a valid URI instead of the empty one.
> > > > > > > 
> > > > > > > On 3/8/07, Sachin Sisodia < sachin.sisodia@gmail.com> wrote:
> > > > > > > > 
> > > > > > > > Hi All,
> > > > > > > > I am gettig the error message while trying to run the below
> code
> > to
> > > > call
> > > > > > web
> > > > > > > > service:
> > > > > > > > 
> > > > > > > > Code:
> > > > > > > > 
> > --------------------------------------------------
> > > > > > > > org.apache.axis.client.Call
> > > > > > > > _call = createCall();
> > > > > > > > _call.setOperation(_operations[0]);
> > > > > > > > _call.setUseSOAPAction(true);
> > > > > > > > _call.setSOAPActionURI("");
> > > > > > > > 
> > > > > > 
> > > > 
> > _call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS
> > > > );
> > > > > > > > _call.setOperationName(new
> > > > > > > > javax.xml.namespace.QName(" http://10.171.44.97/service",
> > > > > > > > "testWS"));
> > > > > > > > 
> > > > > > > > setRequestHeaders(_call);
> > > > > > > > setAttachments(_call);
> > > > > > > > System.out.println("before invoke");
> > > > > > > > java.lang.Object _resp = _call.invoke(new java.lang.Object[]
> > > > {input});
> > > > > > > > 
> > > > > > > > 
> > > > > > > > 
> > > > > > > > 
> > > > > > 
> > > > 
> > 
> --------------------------------------------------------------------------
> > > > > > > > 
> > > > > > > > 
> > > > > > > > Error-
> > > > > > > > 
> > > > > > > > 
> > > > > > > > ----------------------------------
> > > > > > > > 
> > > > > > > > org.xml.sax.SAXException: Error: URI=
> > > > > > > > null Line=3: Illegal
> > > > > > > > xml:lang value "".
> > > > > > > > 
> > > > > > > > 
> > > > > > > > 
> > > > > > > > ----------------------------------
> > > > > > > > 
> > > > > > > > I would appreciate if anyone can help me out.
> > > > > > > > 
> > > > > > > > Thanks in advance.
> > > > > > > > 
> > > > > > > > Regards
> > > > > > > > Sachin
> > > > > > > 
> > > > > > > 
> > > > > > > --
> > > > > > > Saludos.
> > > > > > > José Antonio Sánchez
> > > > > > > 
> > > > > > > 
> > > > > > 
> > > > 
> > ---------------------------------------------------------------------
> > > > > > > To unsubscribe, e-mail:
> > > > > > wsrf-user-unsubscribe@ws.apache.org
> > > > > > > For additional commands, e-mail: wsrf-user-help@ws.apache.org
> > > > > > > 
> > > > > > > 
> > > > > > 
> > > > > > 
> > > > > 
> > > > > 
> > > > > --
> > > > > Saludos.
> > > > > José Antonio Sánchez
> > > > > 
> > > > > 
> > > > 
> > ---------------------------------------------------------------------
> > > > > To unsubscribe, e-mail:
> > > > wsrf-user-unsubscribe@ws.apache.org
> > > > > For additional commands, e-mail: wsrf-user-help@ws.apache.org
> > > > > 
> > > > > 
> > > > 
> > > > 
> > > > 
> > ---------------------------------------------------------------------
> > > > To unsubscribe, e-mail:
> > wsrf-user-unsubscribe@ws.apache.org
> > > > For additional commands, e-mail: wsrf-user-help@ws.apache.org
> > > > 
> > > > 
> > > 
> > > 
> > > --
> > > Saludos.
> > > José Antonio Sánchez
> > > 
> > > 
> > ---------------------------------------------------------------------
> > > To unsubscribe, e-mail:
> > wsrf-user-unsubscribe@ws.apache.org
> > > For additional commands, e-mail: wsrf-user-help@ws.apache.org
> > > 
> > > 
> > 
> > 
> 
> 
> --
> Saludos.
> José Antonio Sánchez
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: wsrf-user-unsubscribe@ws.apache.org
> For additional commands, e-mail: wsrf-user-help@ws.apache.org
> 
> 


[Attachment #3 (text/html)]

<div>Hi Jose, </div>
<div>That problem has been resolved after giving a &quot;Anonymous&quot; access to \
target service. Thanks for your response. I have&nbsp;posted one more problem where \
I&nbsp;am unable to pass stream value&nbsp; as an input. I would appreciate if you \
can response on that also.&nbsp; </div>
<div>&nbsp;</div>
<div>Regards</div>
<div>Sachin<br><br>&nbsp;</div>
<div><span class="gmail_quote">On 3/9/07, <b class="gmail_sendername">José Antonio \
Sánchez</b> &lt;<a href="mailto:getaceres@gmail.com">getaceres@gmail.com</a>&gt; \
wrote:</span> <blockquote class="gmail_quote" style="PADDING-LEFT: 1ex; MARGIN: 0px \
0px 0px 0.8ex; BORDER-LEFT: #ccc 1px solid">Sorry, I thought you were using WSRF \
because I have received that<br>e-mail in that list and I didn&#39;t realize that the \
first time I <br>received it from axis-user list, so I suppose you are using Axis \
1.X<br>here.<br>Just to be sure: You have created the wsdl file that you sent me \
by<br>hand. It has one method that receives a string. With that wsdl you <br>have \
created a skeleton service that you are implementing. That<br>service gets a string \
as input and calls another service with that<br>string (the &#39;input&#39; variable \
that I requested before contains that<br>string?). <br>I don&#39;t know exactly how \
your service is implemented and all your code<br>but I suppose that in some parameter \
you pass to the Call object it<br>may be a null object or an empty string so \
serialization of the<br>request fails. <br><br>On 3/9/07, Sachin Sisodia &lt;<a \
href="mailto:sachin.sisodia@gmail.com">sachin.sisodia@gmail.com</a>&gt; \
wrote:<br>&gt; Hi Jose,<br>&gt; Let me clear our requirement, We have webMethods \
integration server with us<br> &gt; and it is containing some inbuilt services. what \
we need to do here to call<br>&gt; these services from outside through web \
services.<br>&gt;<br>&gt; I have created WSDL file for the mentioned service. That \
service is doing <br>&gt; nothing just mapping input string variable to output \
variable as shown<br>&gt; below:<br>&gt;<br>&gt; \
-------------------------------------------------------------------------------------------------------------------------
 <br>&gt;<br>&gt;<br>&gt;<br>&gt; // pipeline<br>&gt; IDataCursor pipelineCursor = \
pipeline.getCursor();<br>&gt;&nbsp;&nbsp;String inputVariable = IDataUtil.getString( \
pipelineCursor, &quot;input&quot; );<br>&gt; pipelineCursor.destroy \
();<br>&gt;<br>&gt; // pipeline<br>&gt; IDataCursor pipelineCursor_1 = \
pipeline.getCursor();<br>&gt; IDataUtil.put( pipelineCursor_1, &quot;output&quot;, \
inputVariable );<br>&gt; pipelineCursor_1.destroy();<br>&gt; \
----------------------------------------------------------------- <br>&gt;<br>&gt; I \
am using help from WSDL2JAVA to acheive it but getting the error in<br>&gt; runtime.I \
am not sure what I need to do next.<br>&gt;<br>&gt;<br>&gt; Regards<br>&gt; \
Sachin<br>&gt;<br>&gt;<br>&gt;<br>&gt;<br> &gt;<br>&gt;<br>&gt; On 3/9/07, José \
Antonio Sánchez &lt;<a href="mailto:getaceres@gmail.com">getaceres@gmail.com</a>&gt; \
wrote:<br>&gt; &gt; You don&#39;t have any resource property document, so, why are \
you using<br>&gt; &gt; WSRF? It&#39;s easier to use Axis or Axis2 to develop simple \
services. <br>&gt; &gt; Also, if you are starting a new project, consider using Muse2 \
instead<br>&gt; &gt; of Apache WSRF since it implements WSRF as well and it&#39;s \
easier to use<br>&gt; &gt; and in more active development. Look for it in: <br>&gt; \
&gt;<br>&gt; &gt; <a \
href="http://ws.apache.org/muse">http://ws.apache.org/muse</a><br>&gt; &gt;<br>&gt; \
&gt; For your problem, it&#39;s not a matter of the invoked wsdl but I was<br>&gt; \
&gt; asking about your client code, specially what&#39;s in the input variable. \
<br>&gt; &gt;<br>&gt; &gt; On 3/9/07, Sachin Sisodia &lt; <a \
href="mailto:sachin.sisodia@gmail.com">sachin.sisodia@gmail.com</a>&gt; \
wrote:<br>&gt; &gt; &gt; Hi Jose,<br>&gt; &gt; &gt; Please find the attached WSDL \
file that I have generated for web <br>&gt; service. I<br>&gt; &gt; &gt; am invoking \
a service from webMethods and it is simple service for<br>&gt; printing<br>&gt; &gt; \
&gt; log file. Thanks for any help in this regard as I stuck in it from past<br>&gt; \
2 <br>&gt; &gt; &gt; days.<br>&gt; &gt; &gt;<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; \
Regards<br>&gt; &gt; &gt; Sachin<br>&gt; &gt; &gt;<br>&gt; &gt; &gt;<br>&gt; &gt; \
&gt;<br>&gt; &gt; &gt; On 3/8/07, José Antonio Sánchez &lt;  <a \
href="mailto:getaceres@gmail.com">getaceres@gmail.com</a>&gt; wrote:<br>&gt; &gt; \
&gt; &gt; What&#39;s the complete stack trace?<br>&gt; &gt; &gt; &gt;<br>&gt; &gt; \
&gt; &gt; Anyway, maybe the problem is here:<br>&gt; &gt; &gt; &gt; <br>&gt; &gt; \
&gt; &gt; java.lang.Object _resp = _call.invoke(new java.lang.Object []<br>&gt; \
{input});<br>&gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; Could you put what input \
is?<br>&gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; On 3/8/07, Sachin Sisodia &lt; <a \
href="mailto:sachin.sisodia@gmail.com">sachin.sisodia@gmail.com</a>&gt; \
wrote:<br>&gt; &gt; &gt; &gt; &gt; Hi Jose,<br>&gt; &gt; &gt; &gt; &gt; Thanks for \
your response on this. I have tried with your suggestion<br>&gt; and <br>&gt; &gt; \
&gt; &gt; &gt; changed the statement as folllow:<br>&gt; &gt; &gt; &gt; \
&gt;&nbsp;&nbsp; _call.setSOAPActionURI(&quot; <a \
href="http://localhost/service/testWS">http://localhost/service/testWS</a>&quot;);<br>&gt; \
&gt; &gt; &gt; &gt; <br>&gt; &gt; &gt; &gt; &gt; But still I am getting the same \
error message. I would appreciate<br>&gt; for<br>&gt; &gt; &gt; your<br>&gt; &gt; \
&gt; &gt; &gt; help in this regard.<br>&gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; \
&gt; &gt; <br>&gt; &gt; &gt; &gt; &gt; Regards<br>&gt; &gt; &gt; &gt; &gt; \
Sachin<br>&gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; \
&gt; On 3/8/07, José Antonio Sánchez &lt;<a href="mailto:getaceres@gmail.com"> \
getaceres@gmail.com</a>&gt; wrote:<br>&gt; &gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; \
&gt; &gt; &gt; Maybe this call is the problem.<br>&gt; &gt; &gt; &gt; &gt; \
&gt;<br>&gt; &gt; &gt; &gt; &gt; &gt; _call.setSOAPActionURI(&quot;&quot;); <br>&gt; \
&gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt; &gt; Try setting a valid URI \
instead of the empty one.<br>&gt; &gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; \
&gt; &gt; On 3/8/07, Sachin Sisodia &lt; <a href="mailto:sachin.sisodia@gmail.com"> \
sachin.sisodia@gmail.com</a>&gt; wrote:<br>&gt; &gt; &gt; &gt; &gt; &gt; &gt;<br>&gt; \
&gt; &gt; &gt; &gt; &gt; &gt; Hi All,<br>&gt; &gt; &gt; &gt; &gt; &gt; &gt; I am \
gettig the error message while trying to run the below code <br>&gt; to<br>&gt; &gt; \
&gt; call<br>&gt; &gt; &gt; &gt; &gt; web<br>&gt; &gt; &gt; &gt; &gt; &gt; &gt; \
service:<br>&gt; &gt; &gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt; &gt; &gt; \
Code:<br>&gt; &gt; &gt; &gt; &gt; &gt; &gt; <br>&gt; \
--------------------------------------------------<br>&gt; &gt; &gt; &gt; &gt; &gt; \
&gt;&nbsp;&nbsp;org.apache.axis.client.Call<br>&gt; &gt; &gt; &gt; &gt; &gt; \
&gt;&nbsp;&nbsp;_call = createCall();<br>&gt; &gt; &gt; &gt; &gt; &gt; \
&gt;&nbsp;&nbsp;_call.setOperation(_operations[0]); <br>&gt; &gt; &gt; &gt; &gt; &gt; \
&gt;&nbsp;&nbsp;_call.setUseSOAPAction(true);<br>&gt; &gt; &gt; &gt; &gt; &gt; \
&gt;&nbsp;&nbsp;_call.setSOAPActionURI(&quot;&quot;);<br>&gt; &gt; &gt; &gt; &gt; \
&gt; &gt;<br>&gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; <br>&gt; \
_call.setSOAPVersion(org.apache.axis.soap.SOAPConstants.SOAP11_CONSTANTS<br>&gt; &gt; \
&gt; );<br>&gt; &gt; &gt; &gt; &gt; &gt; \
&gt;&nbsp;&nbsp;_call.setOperationName(new<br>&gt; &gt; &gt; &gt; &gt; &gt; &gt; \
javax.xml.namespace.QName (&quot; <a \
href="http://10.171.44.97/service">http://10.171.44.97/service</a>&quot;,<br>&gt; \
&gt; &gt; &gt; &gt; &gt; &gt; &quot;testWS&quot;));<br>&gt; &gt; &gt; &gt; &gt; &gt; \
&gt;<br>&gt; &gt; &gt; &gt; &gt; &gt; &gt;&nbsp;&nbsp;setRequestHeaders(_call); \
<br>&gt; &gt; &gt; &gt; &gt; &gt; &gt;&nbsp;&nbsp;setAttachments(_call);<br>&gt; &gt; \
&gt; &gt; &gt; &gt; &gt;&nbsp;&nbsp;System.out.println(&quot;before \
invoke&quot;);<br>&gt; &gt; &gt; &gt; &gt; &gt; &gt;&nbsp;&nbsp; java.lang.Object \
_resp = _call.invoke(new  java.lang.Object []<br>&gt; &gt; &gt; {input});<br>&gt; \
&gt; &gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; \
&gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt; \
<br>&gt; &gt; &gt;<br>&gt; \
--------------------------------------------------------------------------<br>&gt; \
&gt; &gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; \
&gt; &gt; &gt; &gt; Error- <br>&gt; &gt; &gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; \
&gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt; &gt; &gt; \
----------------------------------<br>&gt; &gt; &gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; \
                &gt; &gt; &gt; &gt; &gt; 
org.xml.sax.SAXException: Error: URI=<br>&gt; &gt; &gt; &gt; &gt; &gt; &gt; null \
Line=3: Illegal<br>&gt; &gt; &gt; &gt; &gt; &gt; &gt; xml:lang value \
&quot;&quot;.<br>&gt; &gt; &gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt; &gt; \
&gt; <br>&gt; &gt; &gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt; &gt; &gt; \
----------------------------------<br>&gt; &gt; &gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; \
&gt; &gt; &gt; &gt; &gt; I would appreciate if anyone can help me out. <br>&gt; &gt; \
&gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt; &gt; &gt; Thanks in \
advance.<br>&gt; &gt; &gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt; &gt; &gt; \
Regards<br>&gt; &gt; &gt; &gt; &gt; &gt; &gt; Sachin <br>&gt; &gt; &gt; &gt; &gt; \
&gt;<br>&gt; &gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt; &gt; --<br>&gt; \
&gt; &gt; &gt; &gt; &gt; Saludos.<br>&gt; &gt; &gt; &gt; &gt; &gt; José Antonio \
Sánchez<br>&gt; &gt; &gt; &gt; &gt; &gt; <br>&gt; &gt; &gt; &gt; &gt; &gt;<br>&gt; \
&gt; &gt; &gt; &gt;<br>&gt; &gt; &gt;<br>&gt; \
---------------------------------------------------------------------<br>&gt; &gt; \
&gt; &gt; &gt; &gt; To unsubscribe, e-mail:<br>&gt; &gt; &gt; &gt; &gt;  <a \
href="mailto:wsrf-user-unsubscribe@ws.apache.org">wsrf-user-unsubscribe@ws.apache.org</a><br>&gt; \
&gt; &gt; &gt; &gt; &gt; For additional commands, e-mail: <a \
href="mailto:wsrf-user-help@ws.apache.org">wsrf-user-help@ws.apache.org </a><br>&gt; \
&gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; \
&gt;<br>&gt; &gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; \
&gt;<br>&gt; &gt; &gt; &gt; --<br>&gt; &gt; &gt; &gt; Saludos. <br>&gt; &gt; &gt; \
&gt; José Antonio Sánchez<br>&gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt;<br>&gt; &gt; \
&gt;<br>&gt; ---------------------------------------------------------------------<br>&gt; \
&gt; &gt; &gt; To unsubscribe, e-mail: <br>&gt; &gt; &gt; <a \
href="mailto:wsrf-user-unsubscribe@ws.apache.org">wsrf-user-unsubscribe@ws.apache.org</a><br>&gt; \
&gt; &gt; &gt; For additional commands, e-mail: <a \
href="mailto:wsrf-user-help@ws.apache.org">wsrf-user-help@ws.apache.org </a><br>&gt; \
&gt; &gt; &gt;<br>&gt; &gt; &gt; &gt;<br>&gt; &gt; &gt;<br>&gt; &gt; &gt;<br>&gt; \
&gt; &gt;<br>&gt; ---------------------------------------------------------------------<br>&gt; \
&gt; &gt; To unsubscribe, e-mail: <br>&gt; <a \
href="mailto:wsrf-user-unsubscribe@ws.apache.org">wsrf-user-unsubscribe@ws.apache.org</a><br>&gt; \
&gt; &gt; For additional commands, e-mail: <a \
href="mailto:wsrf-user-help@ws.apache.org">wsrf-user-help@ws.apache.org </a><br>&gt; \
&gt; &gt;<br>&gt; &gt; &gt;<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt; --<br>&gt; &gt; \
Saludos.<br>&gt; &gt; José Antonio Sánchez<br>&gt; &gt;<br>&gt; &gt;<br>&gt; \
--------------------------------------------------------------------- <br>&gt; &gt; \
To unsubscribe, e-mail:<br>&gt; <a \
href="mailto:wsrf-user-unsubscribe@ws.apache.org">wsrf-user-unsubscribe@ws.apache.org</a><br>&gt; \
&gt; For additional commands, e-mail: <a href="mailto:wsrf-user-help@ws.apache.org"> \
wsrf-user-help@ws.apache.org</a><br>&gt; &gt;<br>&gt; \
&gt;<br>&gt;<br>&gt;<br><br><br>--<br>Saludos.<br>José Antonio \
Sánchez<br><br>---------------------------------------------------------------------<br>To \
unsubscribe, e-mail:  <a \
href="mailto:wsrf-user-unsubscribe@ws.apache.org">wsrf-user-unsubscribe@ws.apache.org</a><br>For \
additional commands, e-mail: <a \
href="mailto:wsrf-user-help@ws.apache.org">wsrf-user-help@ws.apache.org</a><br><br></blockquote>
 </div><br>



[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic