Re: Compressing SOAP requests and using SSL

2004-11-11 Thread Nige White
Scott Nichol wrote: The "nightly" build can gzip and will un-gzip a gzipped response. The most recent one was posted 6/22/2004 at http://cvs.apache.org/dist/soap/nightly/2004-06-22/. To use SSL from the client, your only code change is to use the new endpoint URL (with https). However, as has b

Re: Compressing SOAP requests and using SSL

2004-11-10 Thread Scott Nichol
t; <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, November 10, 2004 10:40 AM Subject: Re: Compressing SOAP requests and using SSL > Daniel Zhang wrote: > > > Yes you can use SSL but it is a different story. You have to configure > > SSL for both

Re: AW: Compressing SOAP requests and using SSL

2004-11-10 Thread Scott Nichol
004 11:01 AM Subject: Re: AW: Compressing SOAP requests and using SSL > How do i unsubscribe from this list? > > > > > > "Malte Kempff" <[EMAIL PROTECTED]> > 11/10/2004 10:43 AM > Please respond to soap-user > > > To:

AW: AW: Compressing SOAP requests and using SSL

2004-11-10 Thread Malte Kempff
] Gesendet: Mittwoch, 10. November 2004 17:07 An: [EMAIL PROTECTED] Betreff: Re: AW: Compressing SOAP requests and using SSL Malte Kempff wrote: >Hi Nigel, >I am using soap2.3.1 for RPCs >calling the methods takes as far I remember not very much changes >and it is looking somehti

Re: AW: Compressing SOAP requests and using SSL

2004-11-10 Thread Nige White
Malte Kempff wrote: Hi Nigel, I am using soap2.3.1 for RPCs calling the methods takes as far I remember not very much changes and it is looking somehting like this: ... SOAPHTTPConnection st = new SOAPHTTPConnection(); ... SOAPContext ctx = new SOAPContext(); ctx.setGzip(true); Call call = new Call

Re: AW: Compressing SOAP requests and using SSL

2004-11-10 Thread Srikanth . Swaminathan
How do i unsubscribe from this list? "Malte Kempff" <[EMAIL PROTECTED]> 11/10/2004 10:43 AM Please respond to soap-user                 To:        <[EMAIL PROTECTED]>         cc:                 Subject:        AW: Compressing SOAP requests and using SSL Hi Nigel

AW: Compressing SOAP requests and using SSL

2004-11-10 Thread Malte Kempff
: ... ... good luck hope it helps Malte -Ursprungliche Nachricht- Von: Nige White [mailto:[EMAIL PROTECTED] Gesendet: Mittwoch, 10. November 2004 16:22 An: [EMAIL PROTECTED] Betreff: Re: Compressing SOAP requests and using SSL OK, looking at the soucre code

Re: Compressing SOAP requests and using SSL

2004-11-10 Thread Nige White
Daniel Zhang wrote: Yes you can use SSL but it is a different story. You have to configure SSL for both Client and Server side, install the CA certificate, configure the keystore etc. For example, look at Tomcat SSL how-to at http://jakarta.apache.org/tomcat/tomcat-4.1-doc/ssl-howto.html. I'm

Re: Compressing SOAP requests and using SSL

2004-11-10 Thread Daniel Zhang
Yes you can use SSL but it is a different story. You have to configure SSL for both Client and Server side, install the CA certificate, configure the keystore etc. For example, look at Tomcat SSL how-to at http://jakarta.apache.org/tomcat/tomcat-4.1-doc/ssl-howto.html. Daniel Z Nige White wrot

Re: Compressing SOAP requests and using SSL

2004-11-10 Thread Nige White
OK, looking at the soucre code, it looks like I should extend SOAPHTTPConnection, and override send() using an extended version of HTTPUtils in which I implement postCompressed(). I already extend SOAPHTTPConnection so that I can share a SOAPHTTPConnection between several generated client class

RE: Compressing SOAP requests and using SSL

2004-11-10 Thread Hubble, Christopher
If you search the Tomcat and Axis archives you'll see threads on both compressing your requests and using SSL. Chris -Original Message- From: Nige White [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 10, 2004 8:27 AM To: [EMAIL PROTECTED] Subject: Compressing SOAP requests and

Compressing SOAP requests and using SSL

2004-11-10 Thread Nige White
My boss has just looked at the SOAP client/server system I wrote. I substituted my generated SOAP java client classes in for the Synergy-created java client classes, (I made sure all the method signatures were identical) and ran the web app. It talked to my SOAP server just fine. Looking at th