Proper Order of things...

2003-03-02 Thread Ross Rankin
I am getting inconsistent results on a few things and I realized I really am sort of parroting examples and really don't know the true order of things when doing a series of connections. So let me ask a few questions: 1) If doing to of the same type of requests what is the correct method for

Cookie Header String

2003-03-02 Thread Ross Rankin
I had a new problem today, but unlike my last one, I figured it out today. But I was wondering if it the way the HttpClient works, a setting, or something I should be doing. The HttpClient is creating a header like this: Cookie: cookie1=blah1 Cookie: cookie2=blah2 Cookie: cookie3-blah3

DO NOT REPLY [Bug 17569] - Include generated website in the distribution

2003-03-02 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=17569. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

Re: Cookie Header String

2003-03-02 Thread Oleg Kalnichevski
Ross, Just use strict mode. That will make HttpClient put all cookies into one header Oleg On Sun, 2003-03-02 at 21:38, Ross Rankin wrote: I had a new problem today, but unlike my last one, I figured it out today. But I was wondering if it the way the HttpClient works, a setting, or something

Re: Proper Order of things...

2003-03-02 Thread Laura Werner
Ross Rankin wrote: I am getting inconsistent results on a few things and I realized I really am sort of parroting examples and really don't know the true order of things when doing a series of connections. So let me ask a few questions: What sorts of inconsistent results? 1) If doing to of the

Re: Proper Order of things...

2003-03-02 Thread Michael Becke
Ross, Below are some answers to your questions. 1) If doing to of the same type of requests what is the correct method for they type of action do I: a) use two Method variables b) use the same one with a recycle but cast it new again c) use the same one without a recycle