Re: HTTP redirects and SOAP

2002-04-03 Thread Dennis Sosnoski
The only way I know of to provide session support that works across all platforms is to basically implement it yourself. Build a wrapper for your statefull session EJB (or whatever other session-based class you want to use), adding a call to the wrapper that gets a session identifier like:

Re: HTTP redirects and SOAP

2002-04-03 Thread Dennis Sosnoski
Message - From: Dennis Sosnoski [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, April 04, 2002 2:00 AM Subject: Re: HTTP redirects and SOAP The only way I know of to provide session support that works across all platforms is to basically implement it yourself. Build a wrapper for your

Re: Performance

2002-01-17 Thread Dennis Sosnoski
Some of the DOM implementations support serialization (including Xerces), as do most of the Java-specific models (JDOM, dom4j, etc.). Writing the document as text and parsing it to reconstruct the DOM or other representation on the other end is actually going to be faster than using Java

SOAP document collection?

2001-10-30 Thread Dennis Sosnoski
Does anyone know of a collection of SOAP documents (preferably both requests and responses) available somewhere? I'd like to use a set of documents for parser performance testing. There are some automatically generated sets I know of, but I'd rather have real samples. Thanks, - Dennis