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 Bruno Simioni <br...@gmail.com> on 2010/03/26 21:07:28 UTC

Is possible to invoke multiple webservices in same http request?

Hi all,

Is there any possibility of request multiple webservices in the same
SOAP Request, like:

SOAP:Body
    Service1
    /Service1
    Service2
    /Service2
/SOAP:Body

Thanks,

Bruno.

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


Re: Re: Is possible to invoke multiple webservices in same http request?

Posted by sumedha rubasinghe <su...@gmail.com>.
well.. although not directly related, 'Callout mediator'[1] from
Apache Synapse can be used for this.

/sumedha

[1] http://synapse.apache.org/Synapse_Configuration_Language.html#Callout


On Sat, Mar 27, 2010 at 5:49 PM,  <br...@gmail.com> wrote:
> Amila, there is no another way os invoking multiple webservices in the same
> http request?
>
> Enviado pelo meu aparelho BlackBerry da Claro
>
> ________________________________
> From: Amila Suriarachchi <am...@gmail.com>
> Date: Sat, 27 Mar 2010 14:27:17 +0530
> To: <ja...@axis.apache.org>
> Subject: Re: Is possible to invoke multiple webservices in same http
> request?
> No.
>
> On Sat, Mar 27, 2010 at 1:37 AM, Bruno Simioni <br...@gmail.com>
> wrote:
>>
>> Hi all,
>>
>> Is there any possibility of request multiple webservices in the same
>> SOAP Request, like:
>>
>> SOAP:Body
>>    Service1
>>    /Service1
>>    Service2
>>    /Service2
>> /SOAP:Body
>>
>> Thanks,
>>
>> Bruno.
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: java-user-unsubscribe@axis.apache.org
>> For additional commands, e-mail: java-user-help@axis.apache.org
>>
>
>
>
> --
> Amila Suriarachchi
> WSO2 Inc.
> blog: http://amilachinthaka.blogspot.com/
>

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


Re: Is possible to invoke multiple webservices in same http request?

Posted by Nan Null <nu...@gmail.com>.
http://wiki.apache.org/ws/FrontPage/Axis/KeepAlive

On Sat, Mar 27, 2010 at 11:31 AM, Nan Null <nu...@gmail.com> wrote:
> Yes, but may not be the way you think.
>
> First, exactly what do you want to accomplish?
>
> Why do you bother doing things like this?  Why can't you call multiple
> WS requests?
>
> Ok, enough.  So, with WS, it's possible to re-use HTTP request, that
> is not to close it.  In Axis, there is a way to indicate that.  Doing
> this definitely save performance for a large number of requests to cut
> down on the number of connection overhead.
>
> The good news is that you only change a flag or two, and you don't
> have to do non-sense hacking stuffs, which I suggest don't do it.
>

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


Re: Is possible to invoke multiple webservices in same http request?

Posted by Nan Null <nu...@gmail.com>.
Yes, but may not be the way you think.

First, exactly what do you want to accomplish?

Why do you bother doing things like this?  Why can't you call multiple
WS requests?

Ok, enough.  So, with WS, it's possible to re-use HTTP request, that
is not to close it.  In Axis, there is a way to indicate that.  Doing
this definitely save performance for a large number of requests to cut
down on the number of connection overhead.

The good news is that you only change a flag or two, and you don't
have to do non-sense hacking stuffs, which I suggest don't do it.

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


Re: Is possible to invoke multiple webservices in same http request?

Posted by Glen Daniels <gl...@thoughtcraft.com>.
Actually, you can.  It's just a small matter of coding. :)

It's true that SOAP provides no standard way of "boxcarring" multiple
requests, partly because it's a complex problem.  For starters, how do you
deal with errors?  Should you treat the whole package of N requests as a
transactional unit?  Should you stop processing if request 2 of 5 fails, or
process everything and boxcar up all the responses including faults?  And
then of course you need to deal with the fact that there's only one shared
SOAP header between all the requests....

Despite all this, nothing in SOAP actually prohibits you from doing it, and
if you can force certain limitations (i.e. no SOAP headers, and no stateful
requests that rely on the outcome of earlier requests, and the most important
one: you must be in control of both sides of the wire), it's quite achievable.

If you're using Axis2's code generation / stub capabilities, this isn't easy,
since the logic in the generated code absolutely assumes that each operation
is in control of the whole SOAP envelope. (*) But if you're using the dynamic
APIs and passing OMElements around, this is actually pretty straightforward -
you just wrap up your requests in a wrapper element, and then unwrap them on
the other side to process them.  There are tricky questions like how to best
deal with faults, but that's up to you.

To sum up - is there a standard way to do this?  Definitely not.  But you can
certainly custom-code one (and if you did a good job, we might even include
it in future versions of Axis2).

Regards,
--Glen

(*) Even then, you might be able to write an Axis2 Module that intercepts the
individual requests (blocking each on an individual thread), collects them
together, and then based on some kind of "openBoxcar() / sendBoxcar()" API,
sends them out.  But this would involve some tricky/ugly code.

On 3/27/2010 10:02 AM, Sri Harsha Yenuganti wrote:
> No. You cannot invoke multiple webservices in one single HTML request !
> 
> On 27 March 2010 07:19, <brunosimioni@gmail.com
> <ma...@gmail.com>> wrote:
> 
>     Amila, there is no another way os invoking multiple webservices in
>     the same http request?
> 
>     Enviado pelo meu aparelho BlackBerry da Claro
> 
>     ------------------------------------------------------------------------
>     *From: * Amila Suriarachchi <amilasuriarachchi@gmail.com
>     <ma...@gmail.com>>
>     *Date: *Sat, 27 Mar 2010 14:27:17 +0530
>     *To: *<java-user@axis.apache.org <ma...@axis.apache.org>>
>     *Subject: *Re: Is possible to invoke multiple webservices in same
>     http request?
> 
>     No.
> 
>     On Sat, Mar 27, 2010 at 1:37 AM, Bruno Simioni
>     <brunosimioni@gmail.com <ma...@gmail.com>> wrote:
> 
>         Hi all,
> 
>         Is there any possibility of request multiple webservices in the same
>         SOAP Request, like:
> 
>         SOAP:Body
>            Service1
>            /Service1
>            Service2
>            /Service2
>         /SOAP:Body
> 
>         Thanks,
> 
>         Bruno.
> 
>         ---------------------------------------------------------------------
>         To unsubscribe, e-mail: java-user-unsubscribe@axis.apache.org
>         <ma...@axis.apache.org>
>         For additional commands, e-mail: java-user-help@axis.apache.org
>         <ma...@axis.apache.org>
> 
> 
> 
> 
>     -- 
>     Amila Suriarachchi
>     WSO2 Inc.
>     blog: http://amilachinthaka.blogspot.com/
> 
> 
> 
> 
> -- 
> Sri Harsha Yenuganti
> shyenuganti@gmail.com <ma...@gmail.com>
> 
> "  IF YOU ARE NOT BRAVE ENOUGH TO FACE A FAILURE YOU ARE UNFIT TO
> SUCCEED.AIM HIGH BUT BE PREPARED FOR THE WORST. "
> 
> 

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


Re: Re: Is possible to invoke multiple webservices in same http request?

Posted by Sri Harsha Yenuganti <sh...@gmail.com>.
No. You cannot invoke multiple webservices in one single HTML request !

On 27 March 2010 07:19, <br...@gmail.com> wrote:

> Amila, there is no another way os invoking multiple webservices in the same
> http request?
>
> Enviado pelo meu aparelho BlackBerry da Claro
> ------------------------------
> *From: * Amila Suriarachchi <am...@gmail.com>
> *Date: *Sat, 27 Mar 2010 14:27:17 +0530
> *To: *<ja...@axis.apache.org>
> *Subject: *Re: Is possible to invoke multiple webservices in same http
> request?
>
> No.
>
> On Sat, Mar 27, 2010 at 1:37 AM, Bruno Simioni <br...@gmail.com>wrote:
>
>> Hi all,
>>
>> Is there any possibility of request multiple webservices in the same
>> SOAP Request, like:
>>
>> SOAP:Body
>>    Service1
>>    /Service1
>>    Service2
>>    /Service2
>> /SOAP:Body
>>
>> Thanks,
>>
>> Bruno.
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: java-user-unsubscribe@axis.apache.org
>> For additional commands, e-mail: java-user-help@axis.apache.org
>>
>>
>
>
> --
> Amila Suriarachchi
> WSO2 Inc.
> blog: http://amilachinthaka.blogspot.com/
>



-- 
Sri Harsha Yenuganti
shyenuganti@gmail.com

"  IF YOU ARE NOT BRAVE ENOUGH TO FACE A FAILURE YOU ARE UNFIT TO
SUCCEED.AIM HIGH BUT BE PREPARED FOR THE WORST. "

Re: Invoking a webservie call from the client gives --> "main" org.apache.axis2.AxisFault: Remote host closed connection during handshake

Posted by SM <mo...@yahoo.com>.
I figured this never mind.  Thanks.  I used https protocol when I disabled security on the webservice.

--- On Tue, 3/30/10, SM <mo...@yahoo.com> wrote:

From: SM <mo...@yahoo.com>
Subject: Invoking a webservie call from the client gives --> "main" org.apache.axis2.AxisFault: Remote host closed connection during handshake
To: java-user@axis.apache.org
Date: Tuesday, March 30, 2010, 11:00 AM

Hi all:
  I am invoking a simple webservice call from a client and I get the following error.  Any tips for resolving this will be much appreciated.  My client code is also pasted below:
 
public class HelloWorldClient {
    public static void main(String[] args) throws Exception {

     HelloWorldServiceStub stub = new HelloWorldServiceStub(null,"https://localhost:8080/axis2/services/HelloWorldService");
  int a = 3;
  int b = 4;
  int result = stub.add(a, b);
  System.out.pritln(a + " + " + b + " = " + result);
    }
}

 
ERROR:
 
log4j:WARN No appenders could be found for logger (org.apache.axis2.description.AxisService).
log4j:WARN Please initialize the log4j system properly.
Exception in thread "main" org.apache.axis2.AxisFault: Remote host closed connection during handshake
 at org.apache.axis2.AxisFault.makeFault(AxisFault.java:430)
 at org.apache.axis2.transport.http.SOAPMessageFormatter.writeTo(SOAPMessageFormatter.java:83)
 at org.apache.axis2.transport.http.AxisRequestEntity.writeRequest(AxisRequestEntity.java:84)
 at org.apache.commons.httpclient.methods.EntityEnclosingMethod.writeRequestBody(EntityEnclosingMethod.java:499)
 at org.apache.commons.httpclient.HttpMethodBase.writeRequest(HttpMethodBase.java:2114)
 at org.apache.commons.httpclient.HttpMethodBase.execute(HttpMethodBase.java:1096)
 at org.apache.commons.httpclient.HttpMethodDirector.executeWithRetry(HttpMethodDirector.java:398)
 at
 org.apache.commons.httpclient.HttpMethodDirector.executeMethod(HttpMethodDirector.java:171)
 at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:397)
 at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:346)
 at org.apache.axis2.transport.http.AbstractHTTPSender.executeMethod(AbstractHTTPSender.java:542)
 at org.apache.axis2.transport.http.HTTPSender.sendViaPost(HTTPSender.java:199)
 at org.apache.axis2.transport.http.HTTPSender.send(HTTPSender.java:76)
 at org.apache.axis2.transport.http.CommonsHTTPTransportSender.writeMessageWithCommons(CommonsHTTPTransportSender.java:400)
 at org.apache.axis2.transport.http.CommonsHTTPTransportSender.invoke(CommonsHTTPTransportSender.java:225)
 at org.apache.axis2.engine.AxisEngine.send(AxisEngine.java:435)
 at
 org.apache.axis2.description.OutInAxisOperationClient.send(OutInAxisOperation.java:402)
 at org.apache.axis2.description.OutInAxisOperationClient.executeImpl(OutInAxisOperation.java:229)
 at org.apache.axis2.client.OperationClient.execute(OperationClient.java:165)
 at helloworld.HelloWorldServiceStub.add(HelloWorldServiceStub.java:462)
 at helloworld.HelloWorldClient.main(HelloWorldClient.java:25)
Caused by: com.ctc.wstx.exc.WstxIOException: Remote host closed connection during handshake
 at com.ctc.wstx.sw.BaseStreamWriter.flush(BaseStreamWriter.java:313)
 at org.apache.axiom.om.impl.MTOMXMLStreamWriter.flush(MTOMXMLStreamWriter.java:168)
 at org.apache.axis2.databinding.utils.writer.MTOMAwareXMLSerializer.flush(MTOMAwareXMLSerializer.java:79)
 at org.apache.axis2.databinding.ADBDataSource.serialize(ADBDataSource.java:94)
 at
 org.apache.axiom.om.impl.llom.OMSourcedElementImpl.internalSerializeAndConsume(OMSourcedElementImpl.java:738)
 at org.apache.axiom.om.impl.llom.OMElementImpl.internalSerialize(OMElementImpl.java:966)
 at org.apache.axiom.om.impl.llom.OMElementImpl.internalSerializeAndConsume(OMElementImpl.java:995)
 at org.apache.axiom.soap.impl.llom.SOAPEnvelopeImpl.serializeInternally(SOAPEnvelopeImpl.java:254)
 at org.apache.axiom.soap.impl.llom.SOAPEnvelopeImpl.internalSerialize(SOAPEnvelopeImpl.java:242)
 at org.apache.axiom.om.impl.llom.OMElementImpl.internalSerializeAndConsume(OMElementImpl.java:995)
 at org.apache.axiom.om.impl.llom.OMNodeImpl.serializeAndConsume(OMNodeImpl.java:486)
 at org.apache.axis2.transport.http.SOAPMessageFormatter.writeTo(SOAPMessageFormatter.java:79)
 ... 19 more
Caused by: javax.net.ssl.SSLHandshakeException: Remote host closed connection during handshake
 at
 com.sun.net.ssl.internal.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:801)
 at com.sun.net.ssl.internal.ssl.SSLSocketImpl.performInitialHandshake(SSLSocketImpl.java:1089)
 at com.sun.net.ssl.internal.ssl.SSLSocketImpl.writeRecord(SSLSocketImpl.java:618)
 at com.sun.net.ssl.internal.ssl.AppOutputStream.write(AppOutputStream.java:59)
 at java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:65)
 at java.io.BufferedOutputStream.flush(BufferedOutputStream.java:123)
 at java.io.FilterOutputStream.flush(FilterOutputStream.java:123)
 at org.apache.commons.httpclient.ChunkedOutputStream.flush(ChunkedOutputStream.java:191)
 at com.ctc.wstx.io.UTF8Writer.flush(UTF8Writer.java:99)
 at com.ctc.wstx.sw.BufferingXmlWriter.flush(BufferingXmlWriter.java:214)
 at com.ctc.wstx.sw.BaseStreamWriter.flush(BaseStreamWriter.java:311)
 ... 30 more
Caused by:
 java.io.EOFException: SSL peer shut down incorrectly
 at com.sun.net.ssl.internal.ssl.InputRecord.read(InputRecord.java:333)
 at com.sun.net.ssl.internal.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:782)
 ... 40 more
Disconnected from the target VM, address: '127.0.0.1:3121', transport: 'socket'
Process finished with exit code 1



      


      

Invoking a webservie call from the client gives --> "main" org.apache.axis2.AxisFault: Remote host closed connection during handshake

Posted by SM <mo...@yahoo.com>.
Hi all:
  I am invoking a simple webservice call from a client and I get the following error.  Any tips for resolving this will be much appreciated.  My client code is also pasted below:
 
public class HelloWorldClient {
    public static void main(String[] args) throws Exception {

     HelloWorldServiceStub stub = new HelloWorldServiceStub(null,"https://localhost:8080/axis2/services/HelloWorldService");
  int a = 3;
  int b = 4;
  int result = stub.add(a, b);
  System.out.pritln(a + " + " + b + " = " + result);
    }
}

 
ERROR:
 
log4j:WARN No appenders could be found for logger (org.apache.axis2.description.AxisService).
log4j:WARN Please initialize the log4j system properly.
Exception in thread "main" org.apache.axis2.AxisFault: Remote host closed connection during handshake
 at org.apache.axis2.AxisFault.makeFault(AxisFault.java:430)
 at org.apache.axis2.transport.http.SOAPMessageFormatter.writeTo(SOAPMessageFormatter.java:83)
 at org.apache.axis2.transport.http.AxisRequestEntity.writeRequest(AxisRequestEntity.java:84)
 at org.apache.commons.httpclient.methods.EntityEnclosingMethod.writeRequestBody(EntityEnclosingMethod.java:499)
 at org.apache.commons.httpclient.HttpMethodBase.writeRequest(HttpMethodBase.java:2114)
 at org.apache.commons.httpclient.HttpMethodBase.execute(HttpMethodBase.java:1096)
 at org.apache.commons.httpclient.HttpMethodDirector.executeWithRetry(HttpMethodDirector.java:398)
 at org.apache.commons.httpclient.HttpMethodDirector.executeMethod(HttpMethodDirector.java:171)
 at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:397)
 at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:346)
 at org.apache.axis2.transport.http.AbstractHTTPSender.executeMethod(AbstractHTTPSender.java:542)
 at org.apache.axis2.transport.http.HTTPSender.sendViaPost(HTTPSender.java:199)
 at org.apache.axis2.transport.http.HTTPSender.send(HTTPSender.java:76)
 at org.apache.axis2.transport.http.CommonsHTTPTransportSender.writeMessageWithCommons(CommonsHTTPTransportSender.java:400)
 at org.apache.axis2.transport.http.CommonsHTTPTransportSender.invoke(CommonsHTTPTransportSender.java:225)
 at org.apache.axis2.engine.AxisEngine.send(AxisEngine.java:435)
 at org.apache.axis2.description.OutInAxisOperationClient.send(OutInAxisOperation.java:402)
 at org.apache.axis2.description.OutInAxisOperationClient.executeImpl(OutInAxisOperation.java:229)
 at org.apache.axis2.client.OperationClient.execute(OperationClient.java:165)
 at helloworld.HelloWorldServiceStub.add(HelloWorldServiceStub.java:462)
 at helloworld.HelloWorldClient.main(HelloWorldClient.java:25)
Caused by: com.ctc.wstx.exc.WstxIOException: Remote host closed connection during handshake
 at com.ctc.wstx.sw.BaseStreamWriter.flush(BaseStreamWriter.java:313)
 at org.apache.axiom.om.impl.MTOMXMLStreamWriter.flush(MTOMXMLStreamWriter.java:168)
 at org.apache.axis2.databinding.utils.writer.MTOMAwareXMLSerializer.flush(MTOMAwareXMLSerializer.java:79)
 at org.apache.axis2.databinding.ADBDataSource.serialize(ADBDataSource.java:94)
 at org.apache.axiom.om.impl.llom.OMSourcedElementImpl.internalSerializeAndConsume(OMSourcedElementImpl.java:738)
 at org.apache.axiom.om.impl.llom.OMElementImpl.internalSerialize(OMElementImpl.java:966)
 at org.apache.axiom.om.impl.llom.OMElementImpl.internalSerializeAndConsume(OMElementImpl.java:995)
 at org.apache.axiom.soap.impl.llom.SOAPEnvelopeImpl.serializeInternally(SOAPEnvelopeImpl.java:254)
 at org.apache.axiom.soap.impl.llom.SOAPEnvelopeImpl.internalSerialize(SOAPEnvelopeImpl.java:242)
 at org.apache.axiom.om.impl.llom.OMElementImpl.internalSerializeAndConsume(OMElementImpl.java:995)
 at org.apache.axiom.om.impl.llom.OMNodeImpl.serializeAndConsume(OMNodeImpl.java:486)
 at org.apache.axis2.transport.http.SOAPMessageFormatter.writeTo(SOAPMessageFormatter.java:79)
 ... 19 more
Caused by: javax.net.ssl.SSLHandshakeException: Remote host closed connection during handshake
 at com.sun.net.ssl.internal.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:801)
 at com.sun.net.ssl.internal.ssl.SSLSocketImpl.performInitialHandshake(SSLSocketImpl.java:1089)
 at com.sun.net.ssl.internal.ssl.SSLSocketImpl.writeRecord(SSLSocketImpl.java:618)
 at com.sun.net.ssl.internal.ssl.AppOutputStream.write(AppOutputStream.java:59)
 at java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:65)
 at java.io.BufferedOutputStream.flush(BufferedOutputStream.java:123)
 at java.io.FilterOutputStream.flush(FilterOutputStream.java:123)
 at org.apache.commons.httpclient.ChunkedOutputStream.flush(ChunkedOutputStream.java:191)
 at com.ctc.wstx.io.UTF8Writer.flush(UTF8Writer.java:99)
 at com.ctc.wstx.sw.BufferingXmlWriter.flush(BufferingXmlWriter.java:214)
 at com.ctc.wstx.sw.BaseStreamWriter.flush(BaseStreamWriter.java:311)
 ... 30 more
Caused by: java.io.EOFException: SSL peer shut down incorrectly
 at com.sun.net.ssl.internal.ssl.InputRecord.read(InputRecord.java:333)
 at com.sun.net.ssl.internal.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:782)
 ... 40 more
Disconnected from the target VM, address: '127.0.0.1:3121', transport: 'socket'
Process finished with exit code 1



      

RE: Re: Is possible to invoke multiple webservices in same http request?

Posted by "Caristi, Joe" <jc...@whisolutions.com>.
You could create one web service operation that represents multiple operations.  A simple example of this is amazon.com.  Search the WSDL (http://webservices.amazon.com/AWSECommerceService/AWSECommerceService.wsdl) for "MultiOperation".

This is not exactly what you want, but it accomplishes something similar.  If you really want multiple services, you would probably need to use an enterprise service bus to split a single multi-operation call into calls for individual services, make the call to each service, and aggregate the results.
________________________________
From: brunosimioni@gmail.com [mailto:brunosimioni@gmail.com]
Sent: Saturday, March 27, 2010 8:19 AM
To: java-user@axis.apache.org
Subject: Res: Re: Is possible to invoke multiple webservices in same http request?

Amila, there is no another way os invoking multiple webservices in the same http request?

Enviado pelo meu aparelho BlackBerry da Claro

________________________________
From: Amila Suriarachchi <am...@gmail.com>
Date: Sat, 27 Mar 2010 14:27:17 +0530
To: <ja...@axis.apache.org>
Subject: Re: Is possible to invoke multiple webservices in same http request?

No.
On Sat, Mar 27, 2010 at 1:37 AM, Bruno Simioni <br...@gmail.com>> wrote:
Hi all,

Is there any possibility of request multiple webservices in the same
SOAP Request, like:

SOAP:Body
   Service1
   /Service1
   Service2
   /Service2
/SOAP:Body

Thanks,

Bruno.

---------------------------------------------------------------------
To unsubscribe, e-mail: java-user-unsubscribe@axis.apache.org<ma...@axis.apache.org>
For additional commands, e-mail: java-user-help@axis.apache.org<ma...@axis.apache.org>



--
Amila Suriarachchi
WSO2 Inc.
blog: http://amilachinthaka.blogspot.com/

________________________________
STATEMENT OF CONFIDENTIALITY:



The information contained in this electronic message and any attachments to
this message are intended for the exclusive use of the addressee(s) and may
contain confidential or privileged information. If you are not the intended
recipient, please notify WHI Solutions immediately at gc@whisolutions.com,
and destroy all copies of this message and any attachments.

Res: Re: Is possible to invoke multiple webservices in same http request?

Posted by br...@gmail.com.
Amila, there is no another way os invoking multiple webservices in the same http request?


Enviado pelo meu aparelho BlackBerry da Claro

-----Original Message-----
From: Amila Suriarachchi <am...@gmail.com>
Date: Sat, 27 Mar 2010 14:27:17 
To: <ja...@axis.apache.org>
Subject: Re: Is possible to invoke multiple webservices in same http request?

No.

On Sat, Mar 27, 2010 at 1:37 AM, Bruno Simioni <br...@gmail.com>wrote:

> Hi all,
>
> Is there any possibility of request multiple webservices in the same
> SOAP Request, like:
>
> SOAP:Body
>    Service1
>    /Service1
>    Service2
>    /Service2
> /SOAP:Body
>
> Thanks,
>
> Bruno.
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: java-user-unsubscribe@axis.apache.org
> For additional commands, e-mail: java-user-help@axis.apache.org
>
>


-- 
Amila Suriarachchi
WSO2 Inc.
blog: http://amilachinthaka.blogspot.com/


Re: Is possible to invoke multiple webservices in same http request?

Posted by Amila Suriarachchi <am...@gmail.com>.
No.

On Sat, Mar 27, 2010 at 1:37 AM, Bruno Simioni <br...@gmail.com>wrote:

> Hi all,
>
> Is there any possibility of request multiple webservices in the same
> SOAP Request, like:
>
> SOAP:Body
>    Service1
>    /Service1
>    Service2
>    /Service2
> /SOAP:Body
>
> Thanks,
>
> Bruno.
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: java-user-unsubscribe@axis.apache.org
> For additional commands, e-mail: java-user-help@axis.apache.org
>
>


-- 
Amila Suriarachchi
WSO2 Inc.
blog: http://amilachinthaka.blogspot.com/