Re: [Bugzilla] vs [JIRA] revisited

2004-10-11 Thread dan tran
Between Bugzilla and JIRA, JIRA is my preference. -D On Mon, 11 Oct 2004 17:34:12 +0200, Oleg Kalnichevski [EMAIL PROTECTED] wrote: Hi Roland I agree this makes sense. I am not sure, though, whether we can reasonably expect things to happen in one 'Big Bang': mailing lists, new CVS

Re: Invoke a httpclient in a EJB

2004-08-04 Thread dan tran
hmmm, EJB + remote DB via jdbc needs sockets? You can use EJB with socket, as long as the operation is quick. In some case http socket operation can hang due to long response delay. -D - To unsubscribe, e-mail: [EMAIL

JUnit cookies test failures

2004-07-19 Thread dan tran
Hello, I am running into the same issue found by Eric http://nagoya.apache.org/eyebrowse/[EMAIL PROTECTED]msgId=708 when running against tomcat 4.1.30. My tomcat env is on windows XP, httpclient 2.0, jdk 1.4.2 The archive does not seem to have any conclusion yet. Any suggestion? -Dan

Re: TestWebappBasicAuth fails on IIS

2004-03-18 Thread Dan Tran
in IIS? Maybe you can move the plugin of your servlet engine in front of the IIS authentication, so the servlet gets the request before IIS authenticates it. I'm just guessing here, I only conducted a few authentication experiments with IIS last year. cheers, Roland Dan Tran [EMAIL PROTECTED

TestWebappBasicAuth fails on IIS

2004-03-17 Thread Dan Tran
Hello, I think IIS rejects any Basic Authentication request. Is there a way to configure IIS to allow these request to passthru to httpclient servlets? Any suggestions? -Dan - To unsubscribe, e-mail: [EMAIL PROTECTED] For

Client Certificate Authentication Question

2003-10-23 Thread Dan Tran
Hello, I need to use httpclient rc2 to communiate with a untrusted server (self sign). The server also requires the client to send a client certificate. Handling untrusted connection over https is straight forward according to the example in EasySSLProtocolSocketFactory. The question here is

Seeking help using Cookie and Session

2003-09-17 Thread Dan Tran
Hi I am write a small client/server web app to understand more about httpclient/cookie/and httpsession. On the httpclient side, I use a get method to keep calling a servlet on server. clientcode HttpClient client = new HttpClient(); GetMethod method = new GetMethod(url); while (

Re: Seeking help using Cookie and Session

2003-09-17 Thread Dan Tran
slightly differently, as well: try { client.executeMethod(method); // do what you want here... } finally { // guarantee that you always release the connection - critical if you switch // to MultiThreadedHttpConnectionManager(). method.releaseConnection(); } -Eric. Dan Tran

Re: HttpGet with Chunked response

2003-09-02 Thread Dan Tran
, September 02, 2003 12:08 AM Subject: Re: HttpGet with Chunked response Dan Tran wrote: - The servlet picks up the GET request in doGet(), simulate a buffer of TestSize, and send buffer back to the client using chunked Transfer-Encoding by calling response.setHeader( Transfer

Re: Servlet to handle fileupload example - missing

2003-09-01 Thread Dan Tran
, 2003 7:58 PM Subject: Re: Servlet to handle fileupload example - missing Hi Dan, Commons FileUpload is what you're looking for. Mike On Sunday, August 31, 2003, at 12:01 PM, Dan Tran wrote: Hello, I notice the webapp test does not have a servlet to handle fileupload example. am I

HttpGet with Chunked response

2003-09-01 Thread Dan Tran
Hello, I run thru the httpclient unittest suite and notice a GET with chunked reponse missing. So I create one where at the server I setup the response to send back as chunk. The test fails agains tomcat 4.1 cayote connector. Is this test purposely left out? My guess here is cayotee connector

Servlet to handle fileupload example - missing

2003-08-31 Thread Dan Tran
Hello, I notice the webapp test does not have a servlet to handle fileupload example. am I suppose to write one? Any advice? Thanks -Dan I am using RC1

Setting up HTTP/1.0 connection?

2003-08-31 Thread Dan Tran
Hi, I am new to HttpClient and hope this is the right list to ask. How do I configure HTTP/1.0 connection? -Dan