Bug report for Apache SOAP [2002/03/31]

2002-03-31 Thread bugzilla
+---+ | Bugzilla Bug ID | | +-+ | | Status: UNC=Unconfirmed NEW=New ASS=Assigned

[Announce] Wingfoot SOAP 1.0

2002-03-31 Thread Baldwin Louie
We are pleased to announce the release of Wingfoot SOAP 1.0 This is a part of the Wingfoot Mobile Web Services Platform, and can be downloaded from http://www.wingfoot.com/products.jsp Wingfoot SOAP is a lightweight client implementation of SOAP 1.1 for J2ME (CLDC and CDC) and J2SE. It's feature

[Announce] Wingfoot SOAP 1.0

2002-03-31 Thread Baldwin Louie
We are pleased to announce the release of Wingfoot SOAP 1.0 This is a part of the Wingfoot Mobile Web Services Platform, and can be downloaded from http://www.wingfoot.com/products.jsp Wingfoot SOAP is a lightweight client implementation of SOAP 1.1 for J2ME (CLDC and CDC) and J2SE. It's feature

Christoph Hauser/Infinity is out of the office.

2002-03-31 Thread Christoph . Hauser
I will be out of the office starting 01.04.2002 and will not return until 16.04.2002. I will respond to your message when I return. In urgent cases you can reach me on my mobile phone (+41 79 433 93 26). ** This email and any

Re: Parsing error in the response xml.

2002-03-31 Thread Scott Nichol
Looking into the Apache SOAP code, I suspect the DOM2Writer#serializeAsXml method. If both the prefix and namespace URI for the DOM Element are non-null, it will write the namespace information. As created in buildFaultDetailsFromThrowable, does Xerces give the element null values for these, or

Re: SOAP ObjecT support

2002-03-31 Thread Scott Nichol
Apache SOAP can work with any Java class you can create. If the class is a bean, the BeanSerializer can be used to write/read an instance to/from a SOAP message. If the class is not a bean, a custom serializer and/or de-serializer is written. The AddressBook example shows how to use user-define

Re: http timeouts

2002-03-31 Thread Scott Nichol
Sean, I'm not sure why you needed to change Message.java. Your client code can create a SOAPHTTPConnection, set its timeout, then set the transport on the Message (or Call for RPC) instance: SOAPHTTPConnection st = new SOAPHTTPConnection(); st.setTimeout(xxx); Message msg = new Message(); msg.s