Re: Axis2 with SSL gives AxisFault

2010-03-30 Thread MDee
Could this be the solution? I added this line after creating the stub. ws._getServiceClient().getOptions().setProperty( HTTPConstants.CHUNKED, "false" ); It seems to work! Don't know why though. http://blog.roweware.com/2007/09/18/axis2-iis-woes/ So far it seems to work. Mike -- View this

Consulting help ($) needed to resolve Axis2 issue

2010-03-30 Thread MDee
Need to get Axis2 based web service up and running. Having problem and can pay for help. Issue involves IIS + isapi_redirector + tomcat and Axis2. Can read about full problem at: http://old.nabble.com/Axis2-with-SSL-gives-AxisFault-td28053938.html Feel free to contact me directly. Mike -- V

Re: Axis2 with SSL gives AxisFault

2010-03-30 Thread MDee
>is this working when directly invoke the tomcat 8443 port with https? > >Since this request hit the AxisServlet within the tomcat server you can >debug it. For this you can >download the source code and start debuging AxisServlet class post method. IIS handles all HTTP/HTTPS operations via the I

Re: Axis2 with SSL gives AxisFault

2010-03-29 Thread MDee
Oh, and here's the log if port 8080 is used (without the isapi_redirector between Tomcat and IIS). This works too. Mar 29, 2010 15:30 [http-8080-1] org.apache.axis2.builder.BuilderUtil.getCharSetEncoding(BuilderUtil.java:365) Input contentType (application/soap+xml; charset=UTF-8; action="urn:g

Re: Axis2 with SSL gives AxisFault

2010-03-29 Thread MDee
Just turned on logging - on server side. Compared calling web service from browser versus client. Not sure if I'm grasping at straws. Is there anything unusual that can be seen in there? When called from the client, the following were logged by tomcat. Time out occurred on the client side. M

Re: Axis2 with SSL gives AxisFault

2010-03-28 Thread MDee
When I turn on logging, I get a little more info. This appears to be from Axis2: Mar 28, 2010 20:17 [Thread-1] org.apache.commons.httpclient.methods.EntityEnclosingMethod.writeRequestBody(EntityEnclosingMethod.java:508) Request body sent Mar 28, 2010 20:17 [Thread-1] org.apache.commons.httpcl

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 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

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