I stumbled upon excelsior jet http://www.excelsior-usa.com/protect-java-web-applications.html
where in they have a compiled version of apache-tomcat which don't rely on jvm anymore. I know for sure apache-tomcat is open source and could be reditributed as part of your compatible opensource project. Now, I want to know if this compiled ve...
Hello
Is there a plugin for Eclipse GWT or any other method to automatically deploy and run GWT app on Tomcat (or any other Serlvet container)? For the moment the only method I know is copying the compiled classes into WEB-INF directory but this is an arduous work. Additionally you have to configure Apache Tomcat manually. I'd like to h...
I'm writing/porting a C++ HTTP event server to Java. I'm wondering what are the best paradigms for implementing comet with Jetty, Tomcat, any other server, or natively.
Threaded
Continuations
NIO
Servlet 3.0
Scalability is an absolute must as I'm developing a new protocol that uses up to 3 concurrent connections per client.
Any help...
Hi,
I am a web application developer, just a beginner.
I am designing a small J2EE web application (for example, the service name would be like http://www.mysite.com). It uses Apache Tomcat.
Spec: When a user sign up into the web application, he will get a custom domain like
http://username.mysite.com
How can i accomplish this in my ...
I have a .war file of a Java Web Application. Now I want to upload it to my ftp server so that I can execute it.
What steps I should perform to run it?
The context path of the webapp is /mywebapp
Edit:
Actually, my ftp server name is ftp://bilgin.ath.cx/ and I have uploaded my "TestWebApp.war" file to this dir: ftp://bilgin.ath.cx/we...
Hi,
I have some strange issue with CSS file.(I think) I have written CSS definition inside .jspx with custom tags, and they are working fine when the pages are being tested on Tomcat localhost. However, when I uploaded pages to my web hosting company, all the web page format gets screwed up. I am not sure why this is happening and wh...
Hi,
I have a connection pool set in the tomcat server context.xml (connection used by several webapps so seems the best place for it).
However, I don't like having passwords hard-coded in the file. Is there any way for me to retrieve the password from elsewhere (secure password store) and set it pragmatically at the time the pooled co...
I have a Grails app called abc, which when I access locally I get at through
http://localhost:port/abc
I have deployed my app up on Amazon EC2 with an elastic IP address which I can get at directly as
http://1.2.3.4/abc
I have a domain name of xyz.com and I have pointed that at my elastic IP, so now I can go to
http://xyz.com
htt...
Following this question (in short: I have created a web project with maven and I am deploying it to tomcat with eclipse).
Eclipse is redeploying and redploying my project non stop. The project seems to work, but this is very annoying. At the beggining I thought that eclipse is eagerly deploying the project after my edits, but it happens...
Hello!
What is the best value for SSLProtocol parameter in Tomcat APR config?
Docs says: "Protocol which may be used for communicating with clients. The default is "all", with other acceptable values being "SSLv2", "SSLv3", "TLSv1", and "SSLv2+SSLv3"."
At first I've made a mistake and actually had SSL2 enabled which caused problems to ...
I am developing a mobile application that is to run on a Windows Mobile PDA. The application is written in Java and to run it we are using the J9 JVM from IBM. The application communicates with an Apache Tomcat server over HTTP and we are trying to set it up now to use SSL.
I have generated public/private keys for both the client and ...
I have one jsp site under webapps/ROOT of tomcat (accessible by doing http://localhost:8080)and want all requests from IIS to go to tomcat's root site (without having to give contexts in uriworkermap.properties) using jk connector. How should I define the uriworkermap.properties file in this case?
(My IIS Tomcat implementation is workin...
Where in the grails files can I define a different context path for a grails app to run on Tomcat ? (For instance, the project is called MyApplication, but I want to reference it as /myapp) Thanks
...
Where can I view tomcat's log file in eclipse?
for some reason my tomcat's installation /log file is always empty.
BTW, does tomcat dump to the log file after a while or is it immediate?
...
I get the following timeout error when trying to start tomcat in eclipse.
Timeout waiting for Tomcat v5.5 Server at localhost to start. Server did not start after 45s.
Does anyone know hot to set the tomcat timeout?
...
We need to upgrade an elderly web application to run under GlassFish 3 instead of Tomcat in order to get EAR deployments (Glassfish was chosen as it is the reference JEE 6 implementation)
Unfortunately it very quickly turned out that the mechanism that ensures that a user is logged in does not work properly and complains that getWriter(...
I have a web application where the first request may take a few seconds as some singletons are initialised.
I've used the mod_proxy and jsvc construction mentioned in this question and described on this page to connect apache with tomcat (data is served via SSL)
For the sample Tomcat application, everything works as it should. However,...
I have a Maven project which executes integration tests for another web-application. This application is deployed and started within a tomcat container.
The configuration for this is done in the “cargo-maven2-plugin”:
<plugin>
<groupId>org.codehaus.cargo</groupId>
<artifactId>cargo-maven2-plugin</artifactId>
<configuration>
...
Hi I am upgrading a site, moving from Notes to Java JSP's and need to support a redirect from the old url's to the new ones. So /site/oldpage.nsf?home needs to redirect to /site/newpage.jsp.
In Tomcat I've set up an error-page to redirect:
404
/avi_redirect.jsp
in the avi_redirect.jsp I have :
pageContext.f...
Using apache2 I want to set up an AJP proxy for a Tomcat server that maps an internal servlet URL to a completely different URL externally. Currently I am using the following configurations:
Apache2 configuration:
<IfModule mod_proxy.c>
ProxyPreserveHost on
ProxyPass /external_name ajp://192.168.1.30:8009/servlet_name
Proxy...