Re: Secure specific web application with SSL in HTTP Tomcat

2010-12-13 Thread Gennady Shumakher
ed certificate, though it shouldn't be used by regular apps. Is there other solution? On 13/12/2010 16:11, Caldarale, Charles R wrote: From: Gennady Shumakher [mailto:gshumak...@gmail.com] Subject: Secure specific web application with SSL in HTTP Tomcat If Tomcat and all of the deployed

Secure specific web application with SSL in HTTP Tomcat

2010-12-13 Thread Gennady Shumakher
Hello, I have the following question: If Tomcat and all of the deployed web applications are available through HTTP. Is there a way to configure Tomcat to restrict the access to specific web app to HTTPS only? Thanks in advance, Gennady

Tomcat ignores the missing JDBC DataSource reference in web.xml

2008-08-21 Thread Gennady Shumakher
My web.xml descriptor missing reference to JDBC data source defined in context.xml ( section), but web application runs just fine and pooled data source consumed by hibernate. >From my perspective it is one setting less I have to care of. But since it does not apply neither the servlet spec nor

RE: How to stop WSDL modification

2008-01-07 Thread Gennady Shumakher
Use true in your service.xml (web service descriptor). Otherwise axis2 generates wsdl out of runtime java classes. Gennady. -Original Message- From: Gardiner, Mike [mailto:[EMAIL PROTECTED] Sent: Monday, January 07, 2008 17:06 To: users@tomcat.apache.org Subject: How to stop WSDL modific

RE: Avoiding same server to server HTTP calls to generate HTML pages via JSPs

2008-01-04 Thread Gennady Shumakher
If you cannot replace your jsps with velocity (or freemarker) you could still use RequestDispatcher. Just provide your own implementation of ServletResponse that mostly will be just wrapper based on servlet response instance ( Tomcat implementation), but will buffer response output as string rathe

RE: Avoiding same server to server HTTP calls to generate HTML pages via JSPs

2008-01-03 Thread Gennady Shumakher
Supposing both dispatcher and jsp are located on the same server you could consider using RequestDispatcher interface which is part of servlet API, specifically include method. Take a look: http://tomcat.apache.org/tomcat-5.5-doc/servletapi/javax/servlet/RequestDisp atcher.html Gennady -Origi

Tomcat 5 persistable cluster aware MBean?

2007-12-28 Thread Gennady Shumakher
Hi, I am considering the use of custom MBean in Tomcat 5 clustered environment. So I wonder is there a way to configure Tomcat or MBean to persist its state and once it is changed to replicate it among other MBean instances in the cluster environment automatically (similar to session replication