Where is PoolTcpConnector?

2001-12-21 Thread armstpat
I have SSL working from Tomcat to the outside world, but need to get it working with SOAP as per the docs. I have the source for both packages, but can't find org.apache.tomcat.service.PoolTcpConnector anywhere. Can someone tell me where I can get it?

RE: Access to Soap message header data?

2001-12-21 Thread armstpat
Look at transport/http/SOAPHTTPConnection.java and grep for header. -Original Message- From: davout [mailto:[EMAIL PROTECTED]] Sent: Friday, December 21, 2001 1:49 PM To: [EMAIL PROTECTED] Subject: Access to Soap message header data? >From a Java class instantiated by a SOAP service, h

RE: Access to Soap message header data?

2001-12-21 Thread armstpat
It is a source file under org/apache/soap. It shows an example of how to get at the SOAP headers. Sorry for the confusion. -Original Message- From: davout [mailto:[EMAIL PROTECTED]] Sent: Friday, December 21, 2001 1:57 PM To: [EMAIL PROTECTED] Subject: RE: Access to Soap message header

RE: SOAP security

2002-01-02 Thread armstpat
Just use SSL and it is good. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, December 28, 2001 1:08 AM To: [EMAIL PROTECTED] Subject: SOAP security I wonder the security of the SOAP on the Internet. __

RE: do an Apache SOAP 2.3 release ?

2002-04-26 Thread armstpat
I like the idea of a 2.3 release if it would be easier to upgrade to 2.3 than change to Axis. We have a large application that uses 2.2. -Original Message- From: Sanjiva Weerawarana [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 25, 2002 8:06 PM To: Apache SOAP; [EMAIL PROTECTED] Sub

RE: Using sessions

2002-09-19 Thread armstpat
One way to do it is to have your client object ask the call object to do it as follows: if(doSession) { shc = new SOAPHTTPConnection (); shc.setMaintainSession (true); setSOAPTransport (shc); } I assume there are other ways to do it. -Origin