[ANN] Apache Tomcat Maven Plugin 2.0-beta-1 Released

2012-02-01 Thread Olivier Lamy
Hello, The Apache Tomcat team is pleased to announce the release of Tomcat Maven Plugin 2.0-beta-1. The Apache Tomcat Maven Plugin provides goals to manipulate WAR projects within the Apache Tomcat servlet container. Documentation site: http://tomcat.apache.org/maven-plugin-2.0-beta-1/ You should

Re: tomcat service version can't access intranet(not internet) files

2012-02-01 Thread chenqiang
André Warnier, Thank you very much, I've solve the problem before I saw your solution, thank you anyway-:). On Tue, Jan 31, 2012 at 4:41 PM, André Warnier wrote: > chenqiang wrote: > >> BTW, I change the user account from local system account to Administrator >> account using tomcat configurati

Re: How to configure certificate file (*.cer) in Tomcat 6

2012-02-01 Thread Geet Chandra
Thanks Dale!!! Few more questions 1. As I have exported *.cer as I have using Digital Badge in Internet Explorer.Can I use the same *.cer to configure in server.xml.If not, how can I generate the same file. 2. How can I generate ca2cert.pem file to use in server.xml On Thu, Feb 2, 2012 at 10:04

RE: How to configure certificate file (*.cer) in Tomcat 6

2012-02-01 Thread Dale Ogilvie
FYI, Here's how we did it with APR for local workstation SSL. Download APR from here: http://tomcat.apache.org/download-native.cgi Copy the files (openssl.exe and tc-native.dll) into the tomcat bin directory Set up your SSL connector, pointing to your CA signed server SSLCertificateFile and the

Re: How to configure certificate file (*.cer) in Tomcat 6

2012-02-01 Thread Geet Chandra
Thanks Chris!!! Please tell steps to configure *.cer certificate file. On Wed, Feb 1, 2012 at 2:18 AM, Christopher Schultz < ch...@christopherschultz.net> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Geet, > > On 1/29/12 11:42 PM, Geet Chandra wrote: > >> Actually I don't want t

Re: Tomcat Form Authentication Timeout Behavior

2012-02-01 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Jess, On 2/1/12 2:10 PM, Jess Holle wrote: > I've noticed that if I POST to an authenticated URL in a web app > configured for form-based authentication, Tomcat delivers the login > form, and then replays the POST just fine *unless* the current > sta

Tomcat Form Authentication Timeout Behavior

2012-02-01 Thread Jess Holle
I've noticed that if I POST to an authenticated URL in a web app configured for form-based authentication, Tomcat delivers the login form, and then replays the POST just fine *unless* the current state of the browser is one where I had already been authenticated but that session had timed out.

Re: Correct behavior while checking the thread binding in DirContextURLStreamHandler ?

2012-02-01 Thread Pid
On 01/02/2012 11:50, Ivan wrote: Here's what the reply should have looked like, without the top-posting. > 2012/2/1 Christopher Schultz > > Ivan, > > On 1/27/12 11:40 PM, Ivan wrote: if (result != null) return result; // Checking thread biding result = threadBindings.get(cu

Re: Correct behavior while checking the thread binding in DirContextURLStreamHandler ?

2012-02-01 Thread Ivan
No sure whether I understood you clearly, if a context is binding on the current thread, and current context classloader has parent classloader, current get method will throw an IllegalStateException. So my question is that, in this scenario, should the context binded on the thread be ignored ? I

Re: [Apache Tomcat Maven plugin] Howto specify the Document base ?

2012-02-01 Thread Olivier Lamy
Hello, See http://tomcat.apache.org/maven-plugin-2.0-beta-1/tomcat7-maven-plugin/run-mojo.html#warSourceDirectory So you must be able to configure the plugin : target/${artifactId}-${version} will be better with ${project.build.outputDirectory}/${artifactId}-${version} 2012/2/1 Blaise Gerva