Re: cookies

2002-07-11 Thread Scott Nichol
I misread the Netscape spec. The semicolons are separating attributes from one another (just like the RFCs), not cookies from one another. Further, a quick look at some servers I have available shows that Expires is commonly used. So much for IETF standards! I will add proper handling of this

Re: cookies

2002-07-11 Thread Scott Nichol
TED]> Cc: "Scott Nichol" <[EMAIL PROTECTED]> Sent: Wednesday, July 10, 2002 7:34 AM Subject: Re: cookies > I have a proposal for Cookie.jar > I do not know what is the proper format or way to propose a change for a > file so I attached here the code that I modified from Co

Re: cookies

2002-07-10 Thread Remus Stratulat
Online. * * @phone +40 90 07 24 07 * @email [EMAIL PROTECTED] * @web http://www.interakt.ro */ /** * Creates an array of cookies from a Set-Cookie or Set-Cookie2 header value. * * @param urlThe URL from which the header came. * @param setCookieValueThe value

Re: cookies

2002-07-09 Thread Remus Stratulat
On Tue, 2002-07-09 at 18:59, Scott Nichol wrote: > > Ok, I got it. Thank you. But still no access to them. Some getters and > > setters for cookies and cookies2 would be nice. > > Good idea. I'll throw that in today. > > > And by the way, why don't yo

Re: cookies

2002-07-09 Thread Scott Nichol
> Ok, I got it. Thank you. But still no access to them. Some getters and > setters for cookies and cookies2 would be nice. Good idea. I'll throw that in today. > And by the way, why don't you make some of the fields and methods > protected so one can easily extend from yo

Re: cookies

2002-07-09 Thread Remus Stratulat
Ok, I got it. Thank you. But still no access to them. Some getters and setters for cookies and cookies2 would be nice. And by the way, why don't you make some of the fields and methods protected so one can easily extend from your classes. Now I have to rewrite the entire class or modif

Re: cookies

2002-07-09 Thread Scott Nichol
What you say is true of the latest release, but the current source, available through the nightly distribution or CVS tree, supports multiple cookies. Scott Nichol - Original Message - From: "Remus Stratulat" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesd

cookies

2002-07-09 Thread Remus Stratulat
Will be a version with support for multiple cookies and cookie handling? Right now in SOAPHTTPConnection the responseHeaders can hold only the last cookie that was set (due to the fact that it's a Hashtable). I know that the SOAP's main goal is not session maintaining but I'm c

[PATCH] Session Scope and Cookies

2002-06-06 Thread Scott Nichol
ne 06, 2002 2:45 PM Subject: Re: Session Scope and Cookies > I'll give this a try. > > Scott Nichol > - Original Message - > From: "K. Swaminathan" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Thursday, June 06, 2002 2:11 PM > Subj

Re: Session Scope and Cookies

2002-06-06 Thread Scott Nichol
I'll give this a try. Scott Nichol - Original Message - From: "K. Swaminathan" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, June 06, 2002 2:11 PM Subject: RE: Session Scope and Cookies > ->If its an issue with SOAP 2.2 its not solved

RE: Session Scope and Cookies

2002-06-06 Thread K. Swaminathan
Swaminathan" <[EMAIL PROTECTED]> ->To: <[EMAIL PROTECTED]> ->Sent: Wednesday, June 05, 2002 5:44 AM ->Subject: Session Scope and Cookies -> -> ->> ->> The SOAPHttpConnection.java, seems to remember and restore ->only a single ->> entry ->> f

Re: Session Scope and Cookies

2002-06-05 Thread Sanjiva Weerawarana
njiva. - Original Message - From: "K. Swaminathan" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, June 05, 2002 5:44 AM Subject: Session Scope and Cookies > > The SOAPHttpConnection.java, seems to remember and restore only a single > entry &

Session Scope and Cookies

2002-06-04 Thread K. Swaminathan
> Sent: 04 April 2001 16:45 > To: Soap-Dev (E-mail) > Subject: Session scope and cookies... > >... > The problem is that because the headers is a hashtable indexed by the key > then only one cookie can be sent. This is fine for my example as the only > cookie is the

Re: SOAPHTTPConnection and session cookies

2001-07-28 Thread Warwick Slade
1 10:28 PM Subject: Re: SOAPHTTPConnection and session cookies > Warwick, > > One option is for you to submit a patch. Brief instructions for doing so > are at the bottom of http://xml.apache.org/source.html > > Scott > > - Original Message - > From: "Warw

Re: SOAPHTTPConnection and session cookies

2001-07-27 Thread Scott Nichol
2001 11:44 PM Subject: SOAPHTTPConnection and session cookies The code within SOAPHTTPConnection stores the header values in a hashtable. To find the Set-Cookie header a get() is performed on the hashtable and hence performs a case sensitive search. If the Web Server returns the header Set-coo

SOAPHTTPConnection and session cookies

2001-07-26 Thread Warwick Slade
The code within SOAPHTTPConnection stores the header values in a hashtable.   To find the Set-Cookie header a get() is performed on the hashtable and hence performs a case sensitive search.   If the Web Server returns the header Set-cookie it will be ignored, currently iPlanet Web Server do