Re: Axis2 with SSL gives AxisFault

2010-03-27 Thread MDee
Amila, What is EPR? The client code works with HTTP. Doesn't work with HTTPS. I can call the web service through the browser with either http or https successfully. The code used in the client is exactly the same for HTTP and HTTPS, except I changed the domain (URL) of the client from http://

Re: Axis2 with SSL gives AxisFault

2010-03-27 Thread Amila Suriarachchi
On Sat, Mar 27, 2010 at 11:01 PM, MDee wrote: > > I'm having trouble getting Axis2 to work with SSL. In actuality, we are > using IIS as the web server and tomcat with Axis2 to handle web services > through Axis2 client. The isapi_redirector seems to be working fine in > having IIS as the front

Re: Axis2 with SSL gives AxisFault

2010-03-27 Thread MDee
Sumedha, The client code is a POJO. The stubs were created by wsdl2java. Not doing anything with a keystore. I thought a keystore would only be necessary for non-authenticated certificate (such a self-signed). We are using a signed certificate. Maybe my understanding is wrong about this. Bu

Re: Axis2 with SSL gives AxisFault

2010-03-27 Thread sumedha rubasinghe
Mike, I think the problem is in your client code. I believe your creating a secure connection to the HTTPS end point by providing a keystore? Share your client code here. /sumedha On Sat, Mar 27, 2010 at 11:01 PM, MDee wrote: > > I'm having trouble getting Axis2 to work with SSL.  In actuality

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

2010-03-27 Thread sumedha rubasinghe
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, wrote: > Amila, there is no another way os invoking multiple webservices in

Axis2 with SSL gives AxisFault

2010-03-27 Thread MDee
I'm having trouble getting Axis2 to work with SSL. In actuality, we are using IIS as the web server and tomcat with Axis2 to handle web services through Axis2 client. The isapi_redirector seems to be working fine in having IIS as the front-end for tomcat. Over port 8080 everything works fine. C

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

2010-03-27 Thread Nan Null
http://wiki.apache.org/ws/FrontPage/Axis/KeepAlive On Sat, Mar 27, 2010 at 11:31 AM, Nan Null 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

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

2010-03-27 Thread Nan Null
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

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

2010-03-27 Thread Glen Daniels
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?

unsubscribe

2010-03-27 Thread Pedro Costa
unsubscribe - To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]

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

2010-03-27 Thread Sri Harsha Yenuganti
No. You cannot invoke multiple webservices in one single HTML request ! On 27 March 2010 07:19, 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

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

2010-03-27 Thread brunosimioni
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 Date: Sat, 27 Mar 2010 14:27:17 To: Subject: Re: Is possible to invoke multiple webservices in same http

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

2010-03-27 Thread Amila Suriarachchi
No. On Sat, Mar 27, 2010 at 1:37 AM, Bruno Simioni 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. > > --