RE: run service in jdk 6

2007-01-12 Thread Kobe
Hi - Are you using Tomcat5.x with JDK6 in production? Are there any problems to be concerned about? Thanks, Kobe Caldarale, Charles R wrote: > >> From: kkus [mailto:[EMAIL PROTECTED] >> Subject: How to run tomcat service in JDK6? > > Double-posting won't improve your chances of getting an

Tomcat 6 Clustering with StaticMembers

2007-01-12 Thread Mike Prince
I'm trying to cluster two Tomcat 6.0.7 instances across a network that does not support multicasting. I've added the StaticMember elements under the StaticMembershipInterceptor. I've also opened up ports 4000 and 51077. When I use netstat to see which ports Tomcat is listening on, it does no

Problem with backlog (AJP 1.3)

2007-01-12 Thread Marcin ZajÄ…czkowski
Hi, Tracking down one problem I tried to get 503 error by reduction number of parallel connections to Tomcat (Apache - mod_jk - (JBoss) - Tomcat) to 10 (MaxThreads) and backlog to 1 (also tried with 10). Regarding to documentation for backlog: "Any requests received when the queue is full w

Re: mod_jk - WARNING: processCallbacks status 2 - fixed

2007-01-12 Thread walt
walt wrote: Hi, I'm having a problem with Apache,Tomcat, and mod_jk. Apache - 1.3.33 Tomcat - 5.5.12 mod_jk - 1.2.20 We have a jsp web page which calls a servlet to load images. The servlet gets the image by connecting to a java application running on a seperate file server. Every now and then

How can I get the unparsed URI from inside a servlet

2007-01-12 Thread happyharris . tomcatlist
Is it possible to get the unparsed URI from inside the service method of an HttpServlet? I am using tomcat 5.5.9. I notice that the HttpServletRequest parameter to this method is - implemented by org.apache.catalina.connector.RequestFacade, - which contains a org.apache.catalina.connector.Request

Re: Using tomcat as client application

2007-01-12 Thread Danilo Cubrovic
Well I already use your soultion. I have same jar file I use on web server and on that client application. Client application is in frames. Left frame is java applet that represents search engine. In right frame I show search results and a lot of html data that user search for (some legal stuf

Re: New Tomcat shuts down thread

2007-01-12 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Steve, Steve Ingraham wrote: > As I stated previously I manually stop and start Tomcat every morning. > It is not that big of an inconvenience to do that in general but at the > same time I would like to know why it is doing this and resolve it. > The

Re: Using tomcat as client application

2007-01-12 Thread Leon Rosenberg
The probably easiest way for you is to build a mini container-application which contains embedded tomcat with your app. At least I would give it a try. regards Leon On 1/12/07, Danilo Cubrovic <[EMAIL PROTECTED]> wrote: Hi all. I seen this thing I need exists for php years ago but not sure i

Re: Using tomcat as client application

2007-01-12 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Danilo, Danilo Cubrovic wrote: > I have web application (java jsf+xml) that works fine on tomcat. > > Can I pack somehow web application and tomcat and install it on user client > pc. This is possible, but probably non-ideal. If your Java applet is p

RE: Tomcat unexpectedly shuts down

2007-01-12 Thread Steve Ingraham
I can use shutdown.sh but the instance stays open. I then have to run the kill -9 command on the instance to clear it out. Since it has been a while since I have seen the error I cannot quote the exact error message. It states something about "not enough components. . .". -BEGIN PGP SIGNED

Re: Tomcat unexpectedly shuts down

2007-01-12 Thread Leon Rosenberg
On 1/12/07, Brown, Carlton <[EMAIL PROTECTED]> wrote: I guess I could split them into multiple tomcats... I'm not averse to trying things, but what indication do we have that running multiple .war files in Tomcat is the problem? No, but maybe they aren't all that similar, so we can narrow the p

Re: Using tomcat as client application

2007-01-12 Thread Mikolaj Rydzewski
Danilo Cubrovic wrote: Well Java Web Start is opposite of what I need. It allows you to deploy yours desktop application via web to users. I want to make possible use of my web application (tomcat+java jsf) to some of my users that cant/want use internet. Oh, I see. So you will need an 'offline

Tomcat and daemon threads

2007-01-12 Thread Aditya Prasad
Hi All, The recent "Tomcat shuts down thread" discussion reminds me of a problem I had to work around but whose cause I never figured out: It used to be that if I started any (non-daemon) threads from a request thread, they wouldn't go away when shutdown.sh was invoked. The JVM would stay up, as

Re: Tomcat unexpectedly shuts down

2007-01-12 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Steve, Steve Ingraham wrote: > I have a similar problem. I would be interested to know what is said > about this. > > In our case we have a web based application that calls up a MySQL > database. It is running in Tomcat 5.5.15 on a Red Hat AS 3 mach

Re: Using tomcat as client application

2007-01-12 Thread Danilo Cubrovic
Well Java Web Start is opposite of what I need. It allows you to deploy yours desktop application via web to users. I want to make possible use of my web application (tomcat+java jsf) to some of my users that cant/want use internet. Plus I have limitations of corporate firewalls so I want to use i

Re: Using tomcat as client application

2007-01-12 Thread Mikolaj Rydzewski
Danilo Cubrovic wrote: I have web application (java jsf+xml) that works fine on tomcat. I also have some significant numebr of users that use client version of this program (java applet+xml) In most of the part this is sthe same code except for the presentation layer. Well , ass you all know,

RE: conecting tomcat 5.5.17 to IIS 6

2007-01-12 Thread Garner, Shawn
Has anyone got JK-1.2.20 to work with IIS 6? I went back to version 1.2.15 and it works now but the developers tell me it's not a bug and many people have configured it succesfully with 1.2.20. I'd like to know how to get it to work with 1.2.20 from somebody who has done it? Shawn -Origin

New Tomcat shuts down thread

2007-01-12 Thread Steve Ingraham
I have started a new thread concerning my shutdown problems as they were addressed in the previous "tomcat shuts down" thread. Below is the latest reply to that thread. Is anything flooding my server? I don't think so. That server only houses our MySQL database. Multiple users input data into

Using tomcat as client application

2007-01-12 Thread Danilo Cubrovic
Hi all. I seen this thing I need exists for php years ago but not sure is anyone make this with tomcat. I have web application (java jsf+xml) that works fine on tomcat. I also have some significant numebr of users that use client version of this program (java applet+xml) In most of the part thi

RE: Tomcat unexpectedly shuts down

2007-01-12 Thread Brown, Carlton
I guess I could split them into multiple tomcats... I'm not averse to trying things, but what indication do we have that running multiple .war files in Tomcat is the problem? -Original Message- From: Leon Rosenberg [mailto:[EMAIL PROTECTED] Sent: Friday, January 12, 2007 2:30 AM To: Tomca

Re: JSTL c:if statements

2007-01-12 Thread David Smith
Could you post your page source? Also post the web-app dtd declaration in your web.xml file. I suspect either servlet spec version or tag usage is causing your issue. --David rotvang wrote: I have Tomcat version 5.0.28, and I am trying to use the JSTL tags in my webapp. I have placed the 2