Re: Tomcat 5.5 Trust Stores and Client Authentication

2010-08-20 Thread Hans Wahn
>> I then installed the client certificate mycert.cer into >> the client browsers, but has no effect and I still recevie the same >> error messages. Is Firefox able to authenticate itself via a client certificate against a server? Maybe you just installed it in the truststore of trustfull servers?

Re: 501 Method not implemented with successive POST requests

2010-08-19 Thread Hans Wahn
Thanks folks, I submitted the issue as a bug: https://issues.apache.org/bugzilla/show_bug.cgi?id=49779 Hans 2010/8/19 Christopher Schultz : > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Pid/Hans, > > On 8/16/2010 5:53 AM, Pid wrote: >> On 16/08/2010 09:52, Hans

Re: 501 Method not implemented with successive POST requests

2010-08-16 Thread Hans Wahn
I'd like to provide more information. Any suggestions what is the best way to accomplish that? Hans 2010/8/16 Pid : > On 13/08/2010 23:24, André Warnier wrote: >> Pid wrote: >>> On 13/08/2010 11:52, Hans Wahn wrote: >>>> 2010/08/12 20:20:17:796 CEST [DEBUG] wi

Re: 501 Method not implemented with successive POST requests

2010-08-13 Thread Hans Wahn
0/8/13 André Warnier : > Hans Wahn wrote: >>> >>> For the below, isn't there an alternative method of configuring the >>> client to automatically follow redirects? >> >> I asked the same question and Oleg Kalniche (HTTPComponents developer) >&g

Re: 501 Method not implemented with successive POST requests

2010-08-13 Thread Hans Wahn
t is ok, but the next fails while all responses after the failure are fine. best regards Hans 2010/8/13 Pid : > On 13/08/2010 11:52, Hans Wahn wrote: >> Thanks for looking into this issue. >> >>> What is the exact header & body of the 302 redirect from Tomcat in #2

Re: 501 Method not implemented with successive POST requests

2010-08-13 Thread Hans Wahn
tpclient.execute(httpost); HttpEntity entity = response.getEntity(); System.out.println("Response Status: " + response.getStatusLine()); int code = response.getStatusLine().getStatusCode()/100; if(code == 3) { String location = response.getFirstHeader("location&qu

501 Method not implemented with successive POST requests

2010-08-13 Thread Hans Wahn
Hello Tomcat-Users, I'm facing a strange issue when using HttpComponents with successive POST requests against a simple Tomcat 7 servlet (Form-based POST Authentication is enabled). After a sucessfull authentication, the client requests the same protected resource a few times in a row, but the sec