active questions tagged tomcat - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T13:30:05Zhttp://stackoverflow.com/feeds/tag/tomcathttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1848327/httpsession-setmaxinactiveinterval-not-working-in-tomcat-60HttpSession.setMaxInactiveInterval not working in Tomcat 6haruspex2009-12-04T17:03:29Z2009-12-05T04:55:22Z
<p>I'm trying to adjust the session timeout using HttpSession.setMaxInactiveInterval and it's not working.</p>
<p>Here is my code (Groovy), which is executing without exceptions:</p>
<pre><code>def paramValue = WebAttributes.REQUEST.getParameter('maxInactiveSeconds');
println 'paramValue=' + paramValue;
if (paramValue != null) {
def seconds = Integer.parseInt(paramValue);
WebAttributes.REQUEST.getSession().setMaxInactiveInterval(seconds);
}
</code></pre>
<p>Some details:</p>
<ul>
<li>Tomcat 6.0.16</li>
<li>This is happening in a webapp separate from the 'normal' one (i.e. with visual content), but I have defined emptySessionPath="true" so the session *should* be shared across webapps</li>
</ul>
<p>thanks,</p>
<p>haruspex</p>
http://stackoverflow.com/questions/1848478/can-i-use-the-flash-net-netconnection-over-https0Can I use the flash.net.NetConnection over httpsdennisjtaylor2009-12-04T17:31:12Z2009-12-05T00:10:51Z
<p>Is it possible to use the flash.net.NetConnection object to connect to my Flash remoting enabled web application over HTTPS within Tomcat or any other servlet container?</p>
<p>I am using the SpiceFactory cinnamon project for amf remoting and have searched for examples of using HTTPS but see only the reference to a proxy type in the NetConnection object.</p>
<p>If someone could provide a reference or example that would be awesome. Or if it is not possible using the flash.net.NetConnection object are there any recommendations of how to configure HTTPS for the spicefactory cinnamon library. </p>
http://stackoverflow.com/questions/1850122/can-a-wicket-application-trigger-a-restart-of-itself-without-a-manager-password0Can a Wicket application trigger a restart of itself without a manager password?Energiequant2009-12-04T22:39:22Z2009-12-04T23:50:53Z
<p>I'm new to Wicket and would like to maintain a web application from inside itself using some sort of maintenance admin page for running clean-up, DB updates, recovery and so on. Since I plan to use Hibernate or similar for data binding I would like to trigger a complete reboot of the application from inside itself without giving everybody who will be able to run these actions the accompanying Tomcat manager password.</p>
<p>As far as I found out, there does not seem to be an easy way to trigger a real restart of a Java web application without the manager password? However, since there are many Java webapps having such restart functionality in their admin panels, I assume it should be possible to trigger a restart in either specific servlet containers or some web frameworks. They somehow have to do the trick? (or maybe they don't really restart from scratch but just reinitialize without a clean restart?)</p>
<p>I could not find anything about Wicket or Tomcat being able to be triggered with a shutdown and restart from their applications although there are some internal methods in Wicket that might be able to do that? (can be accessed publically but JavaDoc advises against it since they are only for internal use)</p>
<p>From a security point of view I don't really see why an application should not be able to request such a restart from its own code.</p>
<p>Can this be done and if yes, what will I have to do in my application to have it restarted?</p>
<p><strong>Edit:</strong> Just to make my question more precise: Neither the user nor the app should have any password that could be used to access the Tomcat manager interface. I was thinking of some method to call or some flag to set to have the servlet container be triggered to restart that particular application without the need of authorization to do so. My thoughts are that since the application is running in a servlet container it should have some way to shutdown and be restarted. If that's not possible in general with Java app servers, there may be some way to do it on application level by doing a call to the underlaying framework (Wicket in this case) to end all running threads, clean up as much as possible and restart the application using the framework; something like a "soft reboot" of the app stack.</p>
http://stackoverflow.com/questions/1552963/tomcat-does-not-undeploy-all-the-files0Tomcat does not undeploy all the files.Srinivasan2009-10-12T06:05:36Z2009-12-04T22:00:02Z
<p>All,</p>
<p>I am using tomcat 5. and i am using manager application to undeploy a war file from remote.
It deletes war file and all extracted files. But it does not delete one jar(lib/struts.jar) file. I do not know what the reason is. I need to delete all the files even the webserver(tomcat5) is running.</p>
<p>Thanks,
Srinivsan r.</p>
http://stackoverflow.com/questions/138948/how-to-get-utf-8-working-in-java-webapps23How to get UTF-8 working in java webapps?kosoant2008-09-26T11:48:09Z2009-12-04T13:52:33Z
<p>I need to get UTF-8 working in my Java webapp (servlets + JSP, no framework used) to support äöå etc. for regular Finnish text and Cyrillic alphabets like ЦжФ for special cases.</p>
<p>My setup is the following:</p>
<ul>
<li>Development encironment: Windows XP</li>
<li>Production encironment: Debian</li>
</ul>
<p>Database used: MySQL 5.x</p>
<p>Users mainly use Firefox2 but also Opera 9.x, FF3, IE7 and Google Chrome are used to access the site.</p>
<p>How to achieve this?</p>
http://stackoverflow.com/questions/1802245/set-the-path-of-web-app-in-meta-inf-context-xml1Set the path of web app in META-INF/context.xml?Tomas2009-11-26T08:18:37Z2009-12-04T12:27:15Z
<p>I'm tryin to change the path of a deployed war file in Tomcat. Reading the documentation I can't figure out if this is possible without moving the context-file to the /conf directory.</p>
<p>Is it possible to deploy a war-file without having a external (outside the war) context file and set path to /something</p>
<p>Cheers!
Tomas</p>
http://stackoverflow.com/questions/1846066/reduce-number-of-tomcats-daemon-threads0Reduce number of Tomcat's Daemon Threadsfurtelwart2009-12-04T10:18:17Z2009-12-04T11:29:24Z
<p>I'm using Tomcat 5.5 with Eclipse and at every startup the Tomcat spawns about 15 to 20 Daemon threads. It's usefull if you want to handle several requests "at once".<br>
This is superficial on my development server and wastes ressources.</p>
<p>How can I reduce this number of Daemon threads?</p>
http://stackoverflow.com/questions/1100298/deploying-a-spring-based-war-with-its-jar-dependencies-externalized1Deploying a Spring-based WAR with its JAR dependencies externalized.Jason Maskell2009-07-08T20:13:33Z2009-12-04T09:33:26Z
<p>I have a Spring app that has a lot of dependencies (18 megabytes of JAR files..) - Now, when I am testing on the remote Tomcat 6.0 server, I'd like to not have to upload that 19 megabytes of dependencies, and just upload the classes. Pretty simple, right?</p>
<p>I can't get the damn thing to work. </p>
<p>I'm using Eclipse 3.4, and if in Java Build Path->Order and Export I remove the export of all of the dependencies, I get a nice small WAR.</p>
<p>So here's what I tried:</p>
<p>I uploaded all of the libs to the server, and stuck them in common/lib in Tomcat. The directory didn't exist, so I created it and modified catalina.properties:</p>
<pre><code>shared.loader=${catalina.home}/common/lib/*.jar
</code></pre>
<p>I've tried a bunch of other configs, but none worked. Restart the server, deployed war fails to start. Specifically:</p>
<pre><code>SEVERE: Error configuring application listener of class org.springframework.web.context.ContextLoaderList$java.lang.ClassNotFoundException:org.springframework.web.context.ContextLoaderListener at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1
</code></pre>
<p>It's dying trying to load the Log4J listener, which it can't find in its classpath. The spring lib that listener is in is in common/lib.</p>
<p>Also - when I deploy the full 18 megabyte war, it works just fine. Everything inits and the app starts. Of course it works fine locally as well.</p>
<p>Oh - and I've replaced the hardcoded logging JARs with the ones out of the extras folder to allow Log4j to work.</p>
<p>Any help here? I have no idea why this isn't working.</p>
http://stackoverflow.com/questions/1842755/mysql-not-reconnecting-with-jndi-tomcat-61Mysql not reconnecting with JNDI Tomcat 6Fedor2009-12-03T20:38:10Z2009-12-03T23:55:32Z
<p>I am using JNDI with Tomcat6 to manage Mysql connections, my Catalina/domain.com/ROOT.xml has:</p>
<pre><code><Resource name="jdbc/db" auth="Container" type="javax.sql.DataSource"
username="db1" password="somepass" driverClassName="com.mysql.jdbc.Driver"
url="jdbc:mysql://localhost:3306/db?autoReconnect=true" maxActive="15" maxIdle="3"
maxWait="5000" removeAbandoned="true" removeAbandonedTimeout="20" />
</code></pre>
<p>I though autoReconnect will do the job reconnecting to database but it does not, after about 8 hours of inactivity my app spits out lost connection to database errors. Any ideas?</p>
<p>Thanks, Fedor</p>
http://stackoverflow.com/questions/1371683/how-to-handle-permgen-space-exception-in-tomcat0How to handle PermGen space exception in Tomcat?vipin k.2009-09-03T06:24:24Z2009-12-03T16:37:14Z
<p>I am getting a PermGen Space Exception whenever I deploy my web application.
I tried some JVm option in <a href="http://en.wikipedia.org/wiki/NetBeans" rel="nofollow">NetBeans</a> but still unable to resolve the issue.</p>
http://stackoverflow.com/questions/1211946/whats-the-need-of-security-role-element-in-dd0What's the need of <security-role> element in DDwhy so serious2009-07-31T11:02:20Z2009-12-03T16:00:22Z
<p>Hi,</p>
<p>I don't understand what's the need to declare element of , or even itself in DD, because the Container can still create a mapping between role in tomcat-user.xml file and role declares in DD in auth-constraint element of a security-constraint for authenticating any client. I'm using Tomcat 5.5.</p>
<p>Thanks in advance</p>
http://stackoverflow.com/questions/1840211/setup-ssl-for-form-login-only-on-tomcat-webapp0Setup SSL for form login only on Tomcat webappBrabster2009-12-03T14:30:34Z2009-12-03T14:55:10Z
<p>Can I set Tomcat (or my webapp if it's done that way) to require SSL for confidentiality of the built-in Form-Based Login mechanism?</p>
<p>i.e. to protect the users credentials, and use standard http for any other transactions?</p>
http://stackoverflow.com/questions/1839618/tomcat-valve-settings0Tomcat Valve settingsKB222009-12-03T12:32:40Z2009-12-03T13:32:46Z
<p>Hi %,</p>
<p>I'm stuck with sort of a configuration issue I think. I need to protect
a folder which is within my actual tomcat application from access from
a certain IP range.</p>
<p>I thought this was <a href="http://serverfault.com">serverfault</a>, so I posted the question <a href="http://serverfault.com/questions/90533/tomcat-6-ip-restrictions">there</a>.
Right now I'm not sure whether this is SO or SF anyways...</p>
<p>Nevertheless I kept on trying geting it going by myself and figured that
I need to set the</p>
<pre><code>org.apache.catalina.valves.RemoteAddrValve
</code></pre>
<p>for that folder of mine. Sadly I just can't get where I need to make that
setting. web.xml, server.xml ? Tried both, null success. Could anyone pls
help me out on this.</p>
<p>tia</p>
<p>K</p>
http://stackoverflow.com/questions/473011/recurring-permgen-in-tomcat-60Recurring "PermGen" in Tomcat 6Berek Bryan2009-01-23T14:11:51Z2009-12-03T12:24:42Z
<p>I keep getting a "PermGen" error on my Tomcat 6 server. </p>
<p>I know what application is causing the problem, but I am not sure why it is doing so. The application is using MySQL 5 and running on JDK 6.</p>
<p>Are there any tools/suggestions to diagnosis or analyze the underlying issue(s) with the specific application?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1812244/simplest-way-to-serve-static-data-from-outside-the-application-server-in-a-java-w0Simplest way to serve static data from outside the application server in a Java web application Janne2009-11-28T10:58:38Z2009-12-03T11:06:42Z
<p>I have a Java web application, using Spring and Struts, running on Tomcat 5.5. I want to load static images that will be shown both on the Web UI and in PDF files generated by the application. Also new images will be added and saved by uploading via the Web UI.</p>
<p>It's not a problem to do this by having the static data stored within the the web container but storing and loading them from outside the web container is giving me headache.</p>
<p>I'd prefer not to use a separate web server like Apache for serving the static data at this point. I also don't like the idea of storing the images in binary in a database. </p>
<p>I've seen some suggestions like having the image directory being a symbolic link pointing to a directory outside the web container, but will this approach work both on Windows and *nix environments? </p>
<p>Some suggest writing a filter or a servlet for handling the image serving but those suggestions have been very vague and high-level without pointers to more detailed information on how to accomplish this. </p>
http://stackoverflow.com/questions/1839191/ssl-with-apache-6-on-fedora-100SSL with Apache 6 on Fedora 10jamiebarrow2009-12-03T10:54:44Z2009-12-03T10:54:44Z
<p>Hi all,</p>
<p>I had some trouble setting up SSL on Tomcat 6 on Fedora 10.</p>
<p>I removed OpenJDK and installed the SUN JDK (jdk-6u18-ea-bin-b05-linux-i586-18_nov_2009.bin).</p>
<p>I'm using Apache Tomcat 6.0.20 (apache-tomcat-6.0.20.tar.gz). I extracted it and ran it using the startup.sh script, and it worked fine. I then tried enabling SSL.</p>
<p>I created the keystore as follows:</p>
<pre><code>keytool -genkey -alias localhost -keyalg RSA -keystore my-keystore.jks
</code></pre>
<p>... and placed it in $CATALINA_HOME/</p>
<p>I then configured SSL using the below snippet from server.xml:</p>
<pre><code><Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true"
maxThreads="150" scheme="https" secure="true"
clientAuth="false" sslProtocol="TLS"
keystoreFile="my-keystore.jks" keystorePass="password" />
</code></pre>
<p>And started up Tomcat. But this time it wasn't loading correctly, complaining about the keystore, and also telling me that it couldn't use port 98 (which wasn't in use before Tomcat started up - confirmed using nmap, as well as trying to telnet to the port).</p>
<p>I'm not sure of the exact errors as I'm not at the machine right now, the machine is at home all alone :B But will perhaps edit this at a later stage to give more detail.</p>
<p>If anyone has any idea why this would be happening though, it would be GREATLY appreciated.</p>
<p>On a separate note, anyone got some good resources on using secure Java JAX-WS Web Services hosted on Tomcat, that will be used by a .NET 2.0 client? :) This is my end goal: creating a (hopefully secure) web service on Linux that a .NET 2.0 client can speak to.</p>
<p>Thanks,</p>
<p>James</p>
http://stackoverflow.com/questions/169453/bad-gateway-502-error-with-apache-modproxy-and-tomcat4Bad Gateway 502 error with Apache mod_proxy and TomcatAlex Miller2008-10-04T00:51:54Z2009-12-03T05:58:01Z
<p>We're running a web app on Tomcat 6 and Apache mod_proxy 2.2.3. Seeing a lot of 502 errors like this:</p>
<blockquote>
<p>Bad Gateway!
The proxy server received an invalid response from an upstream server.</p>
<p>The proxy server could not handle the request GET /the/page.do.</p>
<p>Reason: Error reading from remote server</p>
<p>If you think this is a server error, please contact the webmaster.</p>
<p>Error 502 </p>
</blockquote>
<p>Tomcat has plenty of threads, so it's not thread-constrained. We're pushing 2400 users via JMeter against the app. All the boxes are sitting inside our firewall on a fast unloaded network, so there shouldn't be any network problems. </p>
<p>Anyone have any suggestions for things to look at or try? We're heading to tcpdump next.</p>
<p>UPDATE 10/21/08: Still haven't figured this out. Seeing only a very small number of these under load. The answers below haven't provided any magical answers...yet. :)</p>
http://stackoverflow.com/questions/1369487/eclipse-tomcat-debug-mode-slow-pegs-cpu1eclipse tomcat debug mode slow - pegs cpuandersonbd12009-09-02T18:51:13Z2009-12-03T04:02:01Z
<p>Running Tomcat through eclipse works fine in non-debug mode, but not in debug mode. When I try to start the Tomcat server in debug mode, the console output looks fine for a while, but then starts slowing down and eventually just stops, pegging the cpu at 100%. I don't think it's relevant, but just in case - here's the console output right about when it starts slowing down and eventually stopping (by stopping I mean no more console output, but still 100% cpu).</p>
<pre><code>2009-09-02 14:35:30,859 INFO NONE org.springframework.context.weaving.DefaultContextLoadTimeWeaver:72 - Found Spring's JVM agent for instrumentation
2009-09-02 14:35:49,562 INFO NONE org.springframework.beans.factory.support.DefaultListableBeanFactory:414 - Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@ed889d: defining beans [...
2009-09-02 14:37:31,031 INFO NONE org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean:221 - Building JPA container EntityManagerFactory for persistence unit ...
</code></pre>
<p>I tried everything I could think of to fix it:</p>
<ul>
<li>cleanesd tomcat working directory</li>
<li>restarted eclipse</li>
<li>restarted Windows</li>
<li>refreshed/cleaned all projects</li>
</ul>
<p>I first had this problem last week using eclipse ganymede. I had been running fine in debug-mode for several months prior to this issue. I didn't make any significant changes to our project that would cause this. Eventually, I upgraded to eclipse galileo which solved my problem. Now 2 days later, I'm having the same problem in galileo. Like I said it works fine in non-debug mode. Any help is much appreciated.</p>
<p>I should add that other things work in debug mode - for instance junit tests, so it is something specific to tomcat.</p>
http://stackoverflow.com/questions/1837381/questions-about-php-and-java2Questions about PHP and JavaWilliam2009-12-03T03:08:58Z2009-12-03T03:22:11Z
<p>I want to know how Java (JSP) on Tomcat compares to PHP on Apache in terms of performance.</p>
<p>Two servers with the same hardware configurations, one running Tomcat/Java (JSP) the other Apache/PHP, both servers maxed out with how many connections they can handle at once. Would they be somewhat close or would one pull away from the other one by a large margin? I basically just want to know if Tomcat/Java (JSP) is going to be a big performance hit if I switch to it vs PHP. If anyone can give a detailed answer on why one is faster than the other that would be amazing. Links are great too, I was unable to find anything online surprisingly.</p>
<p>Please no Java vs PHP wars, this is about performance only, nothing to do with the languages themselves.</p>
<p>Note: If there is any other concerns I should have for switching to Java from PHP please let me know. I REALLY hate asking this question because I'm usually the first person to say "program in what you like" but in my situation I need whats also good for the projects I work for. I know that there are large sites written in JSP, but it doesn't mean that they're better.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1837274/can-iis-6-0-show-server-status-just-like-tomcat1Can IIS 6.0 show server status just like tomcat MemoryLeak2009-12-03T02:29:38Z2009-12-03T02:31:45Z
<p>the server status might contain: CPU Usage, Memory Usage and other server's status data.
any recommendations ?</p>
http://stackoverflow.com/questions/1835828/timer-class-used-from-axis2-webservice0Timer class used from axis2 webservice poijoi2009-12-02T21:08:17Z2009-12-03T01:49:27Z
<p>Hi,</p>
<p>We have an axis2 webservice that scehdules a job using Timer. The class that gets executed when the jobs kicks off handles complex data types defined in the webservice package. We I deploy it and run it, I get class not found exception so I tested by packaging the datatype class file and putting it in the $tomcat_home/lib directory and that resolved the error.</p>
<p>Is there anyway to execute the scheduled job without having to put the datatype in the lib folder? Somehow indicate the Timer object where to find that datatype...?</p>
<p>Thanks,
PJ</p>
http://stackoverflow.com/questions/1836616/how-to-configure-a-apache-primary-web-server-to-handle-the-ssl-connections-from-u0How to configure a Apache primary web server to handle the SSL connections from users (Tomcat Servlet/JSP container)roanreca2009-12-02T23:26:09Z2009-12-02T23:45:48Z
<p>How to configure a Apache primary web server to handle the SSL connections from users (Tomcat Servlet/JSP container)</p>
http://stackoverflow.com/questions/1826984/clean-up-after-servlet-if-init-failed3Clean up after servlet if init() failedripper2342009-12-01T15:37:44Z2009-12-02T23:05:42Z
<p>I have an <code>Initializer</code> class that implements the <code>ServletContextListener</code> interface. In its <code>contextInitialized()</code> method, I initialize some global classes that have to be destroyed, otherwise the servlet cannot be unloaded.</p>
<p>However, when the servlet's <code>init()</code> method throws a <code>ServletException</code>, the <code>contextDestroyed()</code> method never gets called --> resources are not release --> servlet does not get unloaded by Tomcat (it remains in "running" state even though its <code>init</code> method never finished).</p>
<p>My question is this - how do I cleanup the resources in this case?</p>
<p>Bonus: why does the servlet even get to "running" state? I understand from <a href="http://tomcat.apache.org/tomcat-5.5-doc/servletapi/javax/servlet/Servlet.html#init%28javax.servlet.ServletConfig%29" rel="nofollow">the documentation</a> that it's not supposed to be running unless the <code>init()</code> method finishes successfully.</p>
<p><strong>Edit</strong> - I think this is because each status line displayed in Tomcat Manager represents an entire war, and not a servlet. A war may contain several servlets, with some succeeding to start and others not. The <code>Initializer</code> is called when the container starts, and its destroy is called only when the entire container is dropped. This leads to a related question - is there a similar built-in way to monitor the state of individual servlets?</p>
<p>(I'm aware I can write custom code to monitor the servlet, either via JMX, or not, but that's out of the scope of
this question).</p>
http://stackoverflow.com/questions/1834936/apache-tomcat-site-nesting0Apache/Tomcat site nestingTamer Sakr2009-12-02T18:39:41Z2009-12-02T22:22:15Z
<p>Hello,</p>
<p>I have two standalone sites in tomcat webapps folder</p>
<ul>
<li><p><code>$TOMCAT_HOME/siteA</code> which is registered in DNS as <em>siteA.example.com</em> and</p></li>
<li><p><code>$TOMCAT_HOME/siteB</code> which is NOT registered in DNS</p></li>
</ul>
<p>Both sites are written in Java/Servlets.</p>
<p>Is there a way to setup apache/tomcat/mod-rewrite to call siteB like so?</p>
<pre><code>siteA.example.com/siteB
</code></pre>
<p>Does this level of nesting make sense?</p>
<p>Regards</p>
http://stackoverflow.com/questions/1834729/developing-with-tomcat1Developing With Tomcat Greg2009-12-02T18:04:48Z2009-12-02T21:59:08Z
<p>I'm running TC 6 in "development mode", eg. the application classes are changing constantly and I want to see the latest version with minimal hassle.</p>
<p>For a while I was using the TC HTML 'manager' application to reload; this worked up to a point, but I kept getting OOM errors after a while. Surfing suggested that TC has a leak when reloading this way. Plus it was a hassle, the extra step after compiling every time.</p>
<p>So I switched to setting 'reloadable true' in the context.xml file. This worked up to a point and didn't require any extra steps, but again I keep getting OOM errors (less frequently, but still many times a day). More surfing suggests that there may be TC leaks in here also.</p>
<p>If I run the app with 'reloadable true' but don't recompile anything, or with 'reloadable false', it runs forever (and VisualVM thinks it is OK memory-wise).</p>
<p>So I am kind of coming to the conclusion that every time I recompile a class I should fully restart TC. This is a huge pain but maybe better than random periodic OOM crashes. Just wondered if anyone had any better ideas. Maybe I should try a different container.</p>
<p>Cheers and thanks!</p>
http://stackoverflow.com/questions/1832691/sharing-a-static-object-between-a-servlet-and-a-webservice2Sharing a static object between a servlet and a webserviceimerez2009-12-02T12:46:18Z2009-12-02T19:59:16Z
<p>I have a servlet which handles http get requests that I'd like to be able to share an object which is also used by a webservice im developing. They are both on the same tomcat server within the same web-app container. Im not sure best how to do it any ideas ?</p>
http://stackoverflow.com/questions/1834924/dimdim-localization0DIMDIM Localization islam khalil2009-12-02T18:37:26Z2009-12-02T18:46:00Z
<p>I try to change the files in
/usr/local/dimdim/ConferenceServer/apache-tomcat-5.5.17/webapps/dimdim/data/language
to Arabic but still characters not displayed well how i cant change the language in dimdim to Arabic </p>
<p>regards</p>
http://stackoverflow.com/questions/1793533/hot-deploy-of-development-changes-with-eclipse-tomcat-and-jetspeed2Hot Deploy of development changes with Eclipse, Tomcat, and Jetspeed jimioh2009-11-24T22:58:09Z2009-12-02T16:48:55Z
<p>Hi,
I am developing a Jetspeed portal application running on Tomcat, using the Eclipse IDE with the Sysdeo Tomcat launcher plugin to enable debugging of the application running in Tomcat/Jetspeed.</p>
<p>I was wondering how to enable hot deploy of development changes for this environment? Does anyone know how to configure a Jetspeed portal web application to be hot-deployed from Eclipse? Can't really find any information on the net for Jetspeed hot deployment.</p>
http://stackoverflow.com/questions/1831086/how-do-i-set-up-a-non-war-based-app-in-tomcat0How do I set up a non .war based app in Tomcat?Dr.Dredel2009-12-02T06:51:46Z2009-12-02T06:56:44Z
<p>I want to run something outside of Tomcat's ROOT web dir.
I used to do this in Tomcat 4, but can't seem to figure it out for the current version.</p>
<p>I'm pretty sure it's as easy as creating a folder that is a sibling to ROOT and in it's web.xml file identifying what the web path ought to be... but I just can't find the right syntax.</p>
<p>Does anyone have it handy?</p>
<p>much obliged if you do.</p>
http://stackoverflow.com/questions/1821785/problem-getting-tomcat-to-start-up-on-reboot0Problem getting tomcat to start up on rebootראובן2009-11-30T19:13:23Z2009-12-01T21:51:01Z
<p>I'm having trouble getting tomcat to start</p>
<p>I followed these instructions to get tomcat / apache2 running:</p>
<pre><code>http://www.mogilowski.net/?p=121
</code></pre>
<p>...but tomcat fails to start on reboot. Here's the message from the log:</p>
<pre><code>Nov 30, 2009 6:59:53 PM org.apache.catalina.startup.Catalina start
INFO: Server startup in 13009 ms
Nov 30, 2009 6:59:53 PM org.apache.catalina.core.StandardServer await
SEVERE: StandardServer.await: create[8005]:
java.net.BindException: Address already in use
at java.net.PlainSocketImpl.socketBind(Native Method)
at java.net.PlainSocketImpl.bind(PlainSocketImpl.java:359)
at java.net.ServerSocket.bind(ServerSocket.java:319)
at java.net.ServerSocket.<init>(ServerSocket.java:185)
at org.apache.catalina.core.StandardServer.await(StandardServer.java:373)
at org.apache.catalina.startup.Catalina.await(Catalina.java:647) at org.apache.catalina.startup.Catalina.start(Catalina.java:607)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:2
5)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:288)
at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:413)
Nov 30, 2009 6:59:53 PM org.apache.coyote.http11.Http11Pro
</code></pre>
<p>It says that [8005] is already in use, however a netstat -napa shows nobody has that port.</p>
<p>I can start it manually by running</p>
<pre><code>/etc/init.d/tomcat stop
</code></pre>
<p>and then doing a netstat and killing the process that has port 8080 and doing an </p>
<pre><code>/etc/init.d/tomcat start
</code></pre>
<p>tried removing the init.d tomcat script, booting the system, and running a netstat -napa to see if anyone has port 8080, or 8000 through 8009 and nobody does. A "telnet" to this port upon a fresh boot gives me</p>
<pre><code>root@domU-12-31-39-00-A1-C4:/usr/local/tomcat/logs# telnet localhost 8005
Trying 127.0.0.1...
telnet: Unable to connect to remote host: Connection refused
</code></pre>
<p>..but if I try to start up tomcat, either by hand or via init.d script, it will fail the first time, complaining about the "Address already in use"</p>
<p>any ideas?</p>