special characters

2004-11-12 Thread tizo
Hi, I have a problem with Strings returned by SOAP RPC services, that contains some special characters, like '>', '<', etc. I can not see those characters in the client (but all the others). What is the problem?, how could I fix it? Thanks very much, tizo

Re: Compressing SOAP requests

2004-11-12 Thread Scott Nichol
FYI, deflate follows Zlib as described in RFC 1950 (http://www.ietf.org/rfc/rfc1950.txt?number=1950). The Zlib DEFLATE method of compression is described in RFC 1951, while gzip is described in RFC 1952 (http://www.ietf.org/rfc/rfc1952.txt?number=1952). RFC 1952 looks like it specifies 10 byt

Re: Compressing SOAP requests

2004-11-12 Thread Scott Nichol
Try it without any CRC: I think gzip may be willing to decompress it, anyway. Scott Nichol Do not send e-mail directly to this e-mail address, because it is filtered to accept only mail from specific mail lists. - Original Message - From: "Nige White" <[EMAIL PROTECTED]> To: <[EMAIL PROT

Re: Compressing SOAP requests

2004-11-12 Thread Nige White
Scott Nichol wrote: The magic header is 8 bytes: "\x1f\x8b\x08\x00\x00\x00\x00\x00". Interesting. I've read elsewhere that the header is 10 bytes, but... I've tried writing those 8 bytes followed by the zlib-deflated data, followed by 32 bits of zero. Now, where gunzip -t used to say "invalid

Re: Compressing SOAP requests

2004-11-12 Thread Scott Nichol
The magic header is 8 bytes: "\x1f\x8b\x08\x00\x00\x00\x00\x00". Scott Nichol Do not send e-mail directly to this e-mail address, because it is filtered to accept only mail from specific mail lists. - Original Message - From: "Scott Nichol" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sen

Re: Compressing SOAP requests

2004-11-12 Thread Scott Nichol
Standard Zlib is equivalent to HTTP Content-Encoding header value 'deflate'. This differs from 'gzip', in that gzip includes some extra bytes (a header and checksum) in the compressed data. Apache SOAP does not support deflate right now. My experience working with PHP Zlib is that many (most?

Compressing SOAP requests

2004-11-12 Thread Nige White
I've specified setGzip(true), and the incoming data is encoded. I'm having trouble uncompressing it using the zlib library from http://www.gzip.org/zlib/ (I can call C routines from this "DBL" language) I can compress and decompress data in DBL using the zlib inflateInit(), inflate(), and inflat

How run application after start

2004-11-12 Thread Jaroslav Srytr
Hi, I use Apache SOAP and Tomcat. In SOAP I have deployed application and I have this trouble: Aplication is start up by SOAP, when client call any method of this application, but I need start up application, when is Tomcat (and next SOAP) started. How I have tell SOAP, that run application afte