SimpleTagSupport and Adding Tags.

2005-10-10 Thread Joe Riopel
Hi, Is it possible to access SimpleTagSupport tags on a jsp page, using some type of filter object? Thanks, Joe - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

tomcat/jvm shutdown very slow after enabling JMX remote management...

2005-09-13 Thread Joe R. Lindsay
If found an old post mentioning the same issue, but no resolution or others. My config is pretty vanilly except for setting the JMX options as part of the normal Tomcat startup (CATALINA_OPTS)... export CATALINA_OPTS=$CATALINA_OPTS -Dcom.sun.management.jmxremote.port= export

RE: tomcat/jvm shutdown very slow after enabling JMX remote management...

2005-09-13 Thread Joe R. Lindsay
, the shutdown-VM will unsuccessfully try to start a JMX server on port . That's what taking so long. Joe R. Lindsay wrote: If found an old post mentioning the same issue, but no resolution or others. My config is pretty vanilly except for setting the JMX options as part of the normal Tomcat

JK Connector with IIS

2005-09-07 Thread Joe Plautz
that and would like to redirect it into it. If I were to use a security-constraint and set the redirect to the secure port on IIS would it redirect to IIS or would it choke? Thanks for any help, Joe Plautz - To unsubscribe, e-mail: [EMAIL

How to get name of Engine a servlet is running in?

2005-09-02 Thread Joe Reger, Jr.
and stays the same after application deployments/restarts. What I'm currently using is code that grabs the last two directories in the root app path and concatenates them... something like webappsROOT or webappsTestingROOT. It's unique, but ugly. Thanks, Joe

Re: Java Server Faces

2005-08-30 Thread Joe Plautz
Where I work we've been using JSF for a large project and it has been working well. Although, it can be a bit heavy on the session usage. The official Sun group can be found here. http://forum.java.sun.com/forum.jspa?forumID=427 Most of the reference implementation developers answer questions

webapp loading order...

2005-08-16 Thread Joe R. Lindsay
We have two webapps that communicate via jndi and we need to have app2 wait for app1 to load before continuing. Is there a way to force the order in which the webapps are started? Joe Lindsay email: [EMAIL PROTECTED]

RE: webapp loading order...

2005-08-16 Thread Joe R. Lindsay
in flames, let me know or just have sympathy for me ;) Joe Lindsay email: [EMAIL PROTECTED] From: QM [mailto:[EMAIL PROTECTED] Sent: Tue 8/16/2005 5:30 PM To: Tomcat

JMX Remote monitoring with jakarta-tomcat-5.5.9 and jdk1.5.0_04

2005-08-14 Thread Joe R. Lindsay
environment. What secret am I missing? I by playing with the iptables and the dynamic port opened for listening I can verify that my jconsole connect failures are related to this 2nd port. Thanks!! Joe

Re: OT: JSTL and JSF book recommendations

2005-08-11 Thread Joe Plautz
Starting out, I suggest the Core Servlets and JavaServer Pages by Marty Hall to gain an understanding of the Java EE web technologies. It's about as good of a book as I've seen on any technical subject matter, particularly for a beginner. I still reference it after several years. For JSF I

Connection Pools

2005-08-03 Thread Joe Plautz
attempt afterward throws an error. Is there some way around having to restart tomcat? Some way to reset the pool? Thanks in advance, Joe Plautz - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: Web application directory structure

2005-07-27 Thread Joe Becknell
web.xml configuration. Look for servlet mappings that might catch the data/test1.html url. Your log files should have more information. Also check to be sure the tomcat service has read privilege on the file and it's directory. --David Joe Becknell wrote: I'm new to Tomcat

Re: Web Application Question

2005-07-26 Thread Joe Riopel
of /url-pattern Thank you for your help though! On 7/26/05, Chris Ward [EMAIL PROTECTED] wrote: Joe, Are you sure your filter is doing the right thing? Sounds like it may be forwarding to a bad URL or something. If it works without the web.xml then I assume you've set up your context

Web application directory structure

2005-07-26 Thread Joe Becknell
oversight? Thanks for any information. Joe.

Web Application Question

2005-07-23 Thread Joe Riopel
Hello, I'm running Tomcat 5.5.7, and right now I have one application ( the default application ). I just created a new dir ( $CATALINA_HOME/webapps/cms ) for a new application. The home page ( index.jsp ), for the application, is just a simple jsp file with static content. Once I added a

Re: JNDI DataSource configuration

2005-07-08 Thread Joe Plautz
I'm not sure about 5.5.x, but in 5.0.x and earlier it was put in META-INF. Joe [EMAIL PROTECTED] wrote: Hi! I am trying to connect my web-app running under tomcat 5.5.9 to connect to a postgresql database. I read the JNDI Datasource HOW-TO on http://jakarta.apache.org/tomcat/tomcat-5.5-doc

Apache2 and mod_jk2 POST performance problems (GET is fine)

2005-06-29 Thread Joe Kislo
in these conditions. I have scoured the web and mailing lists for any solutions, and haven't found anything that I can tweak to try to resolve this issue. I found lots of documentation on jk1 for parameters I could tweak, but nothing for jk2. Ideas? Thanks, -Joe

Re: IE-Page not found problem

2005-06-06 Thread Joe Plautz
Simple, test with IE as well. sudip shrestha wrote: I have a struts-hibernate powered webapp running off a debian box, jdk 1.5 and tomcat 5.5.7 I have IE users complaining about page not found problems from time to time where as Firefox users never. I myselft have never encountered this

Re: IE-Page not found problem

2005-06-06 Thread Joe Plautz
://validator.w3.org/ Here's a link that explains a lot of the known issues, http://www.howtocreate.co.uk/wrongWithIE/ sudip shrestha wrote: Dude: Read the email first... I am informing of the problem after we experienced with IE... On 6/6/05, Joe Plautz [EMAIL PROTECTED] wrote: Simple, test with IE

Re: IE-Page not found problem

2005-06-06 Thread Joe Plautz
If it was only that simple. Rafa Krupiski wrote: Joe Plautz wrote: Simple, test with IE as well. yet simpler, tell your users it's IE problem and to use firefox instead :) - To unsubscribe, e-mail: [EMAIL PROTECTED

Re: JSP too big to compile?

2005-06-03 Thread Joe Plautz
You are actually limited by Java. I can't recall the actual size off hand, but a method can only be so big. From what I remember, it has something to do with server side includes vs jsp includes. We ended up doing some pretty nasty stuff by conditionally doing a server side include. I can't

Embedded Tomcat JDBC Issue

2005-05-31 Thread Joe Reger, Jr.
Any tips on how to get a JDBC connection going using the embedded version of Tomcat? Where does the MySql driver go? How is the JNDI resource configured? I've tried deploying a .war file with a context.xml, but have had some problems (below). Thanks, Joe -Original Message- From: Joe

Embedded Tomcat JNDI/JDBC Configuration Questions

2005-05-29 Thread Joe Reger, Jr.
configured under the embedded tomcat? 3) Does the error message I'm seeing point to anything that I need to change? Thanks, Joe

Re: off topic: Where to get a good tutorial about JSP.

2005-05-13 Thread Joe Riopel
I liked http://www.jspbook.com/index.jsp - There is a free download of this entire book on http://www.theserverside.com, you have to register to get it ( it's free ). It's not the most up_to_date book out there, but it helped me out when I was learning. On 5/13/05, [EMAIL PROTECTED] [EMAIL

Re: Basic load balancing

2005-05-11 Thread Joe Plautz
From what I understand load balancing is done at the router, where clustering is a tomcat setup issue. Joe Faine, Mark wrote: Tomcat 5.0.28 We seem to often have to make minor changes that cause us to have to restart our tomcat server (the whole server, not just a web application) and this has

Re: Free reporting s/w that works with apache+tomcat

2005-05-10 Thread Joe Plautz
can have a report in minutes. I would recommend using it to anyone. Joe Mike Curwen wrote: you should consider using POI, if you need Excel-only features like footer repeated on every page. Specifically: http://jakarta.apache.org/poi/hssf/quick-guide.html#HeaderFooter -Original Message

RE: Directory Creation in Servlet Question

2005-05-09 Thread Joe Hertz
If you want to get the absolute path of the application directory use ServletContext.getRealPath(/); and pass this to the file creating code. Yes, I could, but this again didn't explain the behavior which turned out to be: Try to create \images in a servlet running under Windows

RE: Directory Creation in Servlet Question

2005-05-09 Thread Joe Hertz
If you want to get the absolute path of the application directory use ServletContext.getRealPath(/); and pass this to the file creating code. Yes, I could, but this again didn't explain the behavior which turned out to be: Try to create \images in a servlet running under Windows

RE: Directory Creation in Servlet Question

2005-05-06 Thread Joe Hertz
of root. Windows Tomcat puts it under it's webapps tree. I'm expecting Suze to do the same. I have a hard time imagining that Tomcat gets a different view of its root file system depending on which OS I runs on. It really ruins the concept of platform independence for this sort of thing. -Joe you

Directory Creation in Servlet Question

2005-05-05 Thread Joe Hertz
I have a Struts Servlet that executes the code snippet below to create a directory. Under Windows, this works great, the directory showing up under C:\TOMCAT4\WEBAPPS\ Under Suze Linux, it doesn't get created, and it's not a permission problem. At least not under the webapps directory. The

javax.Servlet.RequestDispatcher

2005-04-22 Thread Joe Bautista
Hi everyone, I found an object in my code that uses the javx.Servlet.RequestDispatcher class. But I looked up this class on the Web and it looks like an Inteface. Does anyone know how it is implemented in the Tomcat source code? Regards, Joe

Re: development environment

2005-04-22 Thread Joe Riopel
p4 3.4 1GB RAM VIM ( Sometimes NetBeans ) MySQL ( 4.1.7 ) On 4/22/05, Anoop kumar V [EMAIL PROTECTED] wrote: here is what we have: Pentium IV 2.5 Ghz / 1.5 GB Ram OS Windows XP IDE - IntelliJ IDEA (I give it a 9 on 10 - its that good) We use cvs - WinCVS / TortoiseCVS for version

RE: localhost Context files and path = /

2005-04-21 Thread Joe Bautista
Doug, Finally, you have solved the problem that has vexed me for days. Thanks. Joe -Original Message- From: Parsons Technical Services [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 20, 2005 5:20 PM To: Tomcat Users List Subject: Re: localhost Context files and path

localhost Context files and path = /

2005-04-20 Thread Joe Bautista
/startup.bat the output window gave me some error messages based on the Digester. My conclusion is this: sakai-dispatch.xml is working, but for some reason it's not letting me set the path to /. Any ideas? Joe Bautista Fuller Seminary Programmer/Analyst

Tomcat Won't Start When 1024Mb JVM Memory Specified

2005-04-18 Thread Joe Reger, Jr.
, Joe Reger

Deploying Sakai 1.5.0 with Tomcat 5.5.7

2005-04-18 Thread Joe Bautista
is this: What process/program/class is responsible for reading and acting on the directives in sakai-dispatch.xml? Doesn't it look like this isn't being done? Thanks in advance, Joe Bautista - To unsubscribe, e-mail: [EMAIL

RE: Deploying Sakai 1.5.0 with Tomcat 5.5.7

2005-04-18 Thread Joe Bautista
-pattern /portal/* /url-pattern /servlet-mapping Thanks Fritz, Joe -Original Message- From: Fritz Schneider [mailto:[EMAIL PROTECTED] Sent: Monday, April 18, 2005 2:11 PM To: 'Tomcat Users List' Subject: RE: Deploying Sakai 1.5.0 with Tomcat 5.5.7 Joe, Do you also have

Re: port number

2005-04-13 Thread Joe Plautz
Just user the jk connector. The work famously together. Obviously you're not running tomcat on port 80, but you don't need to. Here's the link on setting it up. http://jakarta.apache.org/tomcat/connectors-doc/index.html t.n.a. wrote: Hi everyone, I host applications on a machine where both

Re: port number

2005-04-13 Thread Joe Plautz
No, they're not both listening on port 80, Apache is listening on port 80 and forwards requests to tomcat as needed. Joe Magnotta, Salvatore wrote: So then it is possible to have both on port 80? G says no way... No that's not possible. Only one

Re: HttpSessionListener events after redeployment?

2005-04-05 Thread Joe Riopel
Could you use the isNew() method from HttpSession ? On Apr 5, 2005 4:20 PM, Clute, Andrew [EMAIL PROTECTED] wrote: In my application I like to keep track of all the sessions that are currently active. So, I have a class that implements HttpSessionListener and have a static HashMap that keeps a

Bootclasspath

2005-04-05 Thread Joe Plautz
appreciated. Thanks, Joe Plautz - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

HTTP connector running out of processors under heavy load - our solution

2005-03-09 Thread Karau, Joe
In no way am I trying to say that this is the final solution to the referenced problem, but just thought I'd share what we encountered in relation to the referenced bug. Bug ID: 5735 http://issues.apache.org/bugzilla/show_bug.cgi?id=5735 Short version: Using the client VM instead of the server VM

Limit stdout.log file size?

2005-02-23 Thread Joe Reger, Jr.
Hi, Is there any way to limit the file size of stdout.log? Thanks, Joe

RE: out of memory when there is plenty

2005-02-19 Thread Joe Reger, Jr.
Throw the following code into a jsp and view it. It'll give you a little graph showing you how much memory Tomcat can use, has allocated and is using. This will tell you if you've properly set the max memory value and may help you figure out what's happening. Best, Joe StringBuffer mb = new

RE: Missing application web.xml, using defaults only

2005-02-17 Thread Joe Reger, Jr.
. More details on my situation in the archives. Best, Joe -Original Message- From: Peter Crowther [mailto:[EMAIL PROTECTED] Sent: Thursday, February 17, 2005 9:06 AM To: Tomcat Users List; Abhay Subject: RE: Missing application web.xml, using defaults only From: Abhay [mailto:[EMAIL

RE: Missing application web.xml, using defaults only

2005-02-17 Thread Joe Reger, Jr.
Do you know if that directory change is part of the manager application's WAR deployment process? -Original Message- From: Caldarale, Charles R [mailto:[EMAIL PROTECTED] Sent: Thursday, February 17, 2005 3:45 PM To: Tomcat Users List Subject: RE: Missing application web.xml, using

RE: FW: Re: Missing application web.xml Tomcat 5.5.7

2005-02-15 Thread Joe Reger, Jr.
. I forget what I saw, but I believe that it was successfully reading in custom variables from my context.xml, inside of the war file. Thanks for the help, Joe -Original Message- From: sven morales [mailto:[EMAIL PROTECTED] Sent: Monday, February 14, 2005 11:31 PM To: Tomcat Users List

FW: Re: Missing application web.xml Tomcat 5.5.7

2005-02-14 Thread Joe Reger, Jr.
. A few seconds later the application dissappears and all files are deleted. The tomcat sample war file appears to be broken too: http://jakarta.apache.org/tomcat/tomcat-5.5-doc/appdev/sample/ I'm open to suggestions. More info below. Thanks, Joe From: Joe Reger, Jr. [mailto:[EMAIL PROTECTED

RE: FW: Re: Missing application web.xml Tomcat 5.5.7

2005-02-14 Thread Joe Reger, Jr.
Hi, I'm just using that to represent the root tomcat installation directory. For me it's C:\Superfly\Tomcat 5.5\. For you it may be different. Are you having any trouble with the web.xml file when deployinga WAR through the manager app? Joe -Original Message- From: sven morales

Re: Tomcat vs Jetty

2005-02-12 Thread Joe
5.1.2. peter looks quite nice! have you tried resin on the same machine too? greetings, joe - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Missing application web.xml

2005-02-02 Thread Joe Reger, Jr.
the file. I use Ant to build the WAR file: jar jarfile=ROOT.war fileset dir=${files} excludes=**/*.java/ /jar Any help appreciated. Seen this on two development XP machines today. Best, Joe Reger ---Original Message I just wanted

RE: I guess this is a BUG!!!

2005-02-01 Thread Joe Miller
Here is a monitor request doc for both boxes. -Original Message- From: PA [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 01, 2005 11:37 AM To: Tomcat Users List Subject: Re: I guess this is a BUG!!! On Feb 01, 2005, at 19:36, micky none wrote: Can anyone please tell me if it's a

Problems running JNI code inside Tomcat 5.0.28

2005-01-21 Thread Joe Krause
it? Any tutorials??? Thanks Joe - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Manually Populate Request Object Name/Value Parameters?

2004-12-13 Thread Joe Reger, Jr.
by setting the URL and name/value request parameters? I'm using a homebrew login scheme. Would switching to form-based authentication automatically restore the original request once the user is logged-in? Thanks, Joe - To unsubscribe

WAR file and context.xml overwriting on deployment

2004-11-16 Thread Joe Reger, Jr.
with the default settings. Is there some more user-friendly way to deal with this configuration issue? How do others that provide downloadable WAR files do this? I understand that this may not be the traditional usage of WAR files and Tomcat. Ideas welcome. Thanks, Joe Reger

Configure Tomcat's Session Cookie Domain?

2004-11-16 Thread Joe Reger, Jr.
one.joereger.com, two.joereger.com, three.joereger.com and so on. Anything like this in Tomcat's configuration? I've also looked into the jsp:useBean tags but haven't found anything that does what I'm looking for. Thanks, Joe Reger

Embedded Tomcat deploying WAR with URL of type jar:

2004-11-16 Thread Joe Reger, Jr.
to get it working. Any help appreciated. Sorry for the long message. Joe Reger - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Configure Tomcat's Session Cookie Domain?

2004-11-16 Thread Joe Reger, Jr.
to use a firewall with sticky sessions. But enough whining from me... like always, there's a workaround. Best, Joe -Original Message- From: Tim Funk [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 16, 2004 7:12 PM To: Tomcat Users List Subject: Re: Configure Tomcat's Session Cookie

j_security_check forward, https client - surrogate squid - http tomcat

2004-11-04 Thread Price, Joe
Hello all, I have the following configuration: Inet client (HTTPS) - proxy/firewall surrogate server (squid-2.5.STABLE5) openbsd - HTTP - origin server (Apache/1.3.29 - jakarta-tomcat-4.1.30) openbsd We have our SSL certs on the squid server and to keep data secure over the internet, squid

Error Building Tomct 5.0.28 with JDK 1.5

2004-10-16 Thread Joe Krause
for details. It says to check the copuiler error output for details - but I don't know where that is... Much thanks for looking at this and setting me in the right direction Joe Krause

Re: Error Building Tomct 5.0.28 with JDK 1.5

2004-10-16 Thread Joe Krause
of upgrading to 1.5 JDK (and eventaully Tomcat 5.5), but I didn't want to introduce too many changes at once. Joe From: Shinobu Kawai [mailto:[EMAIL PROTECTED] Sent: Sat 10/16/2004 6:42 PM To: Tomcat Users List Subject: [SPAM] - Re: Error Building Tomct 5.0.28

Turn off session persistence

2004-10-06 Thread Joe
hi! is there a simple way to turn off the session persistence OFF by default for all contexts? many thanks in advance, joe - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Turn off session persistence

2004-10-06 Thread Joe
Thank you very much. I'll try your hints. The most promising is: in META-INF/context.xml use the persistent manager and set the saveOnRestart parameter to be false. gretings, joe Dale, Matt wrote: Actually you can also set the pathname= with the standard manager, will do the same. Ta Matt

Absolute path to webapp???

2004-08-04 Thread Joe Krause
How do you specify an absolute path to a webapplication. I don't want to run my webapp from within $CATALINA_HOME/webapps. When I set it up to point to an absolute path outside of the webapps directory, it still looks for it there: Server port=8005 shutdown=SHUTDOWN Service name=DVRSERVICE

RE: Removing Balancer Webapp?

2004-08-03 Thread Joe Krause
=localhost appBase=/dvr/web / /Engine /Service /Server I giess I don't understand the autoDeploy mechanism... Joe -Original Message- From: Shapira, Yoav [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 03, 2004 6:14 AM To: Tomcat Users List Subject: RE: Removing Balancer Webapp? Hi

Removing Balancer Webapp?

2004-08-02 Thread Joe Krause
How do you remove the balancer webapp. I don't want to deploy my web app into the webapps directory - I want to use my own path. But everytime I change the path of the appBase, I get startup errors. Here's my server.xml file: Server port=8005 shutdown=SHUTDOWN Service name=Catalina

Administrator setup

2004-04-15 Thread Joe Fiola
sure its a simple sollution but i haven't found the answer yet. Thanks, Joe - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Turning off Case Sensitivity in Tomcat 4.1.30

2004-04-05 Thread Karau, Joe
I'm trying to turn off case sensitive URL's in Tomcat 4.1.30, and so far I have had no luck. I've added the resources element to my context with a className=''org.apache.naming.resources.FileDirContext and caseSensitive=false. However, when I try to access my index.html page using any caps

Tomcat 4.1.29 JVM crash on RHEL-3-ES

2004-03-01 Thread Joe Miller
, 0xb2bf) the space 26112K, 99% used [0xaebf, 0xb056b260, 0xb056b400, 0xb057) -- Joe Miller Linux Administrator GoDaddy.com [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e

Tomcat for Windows WebApp deletion problem?

2004-02-05 Thread Joe Hertz
*deleted* the contents of the linked directories. I was pretty sure it hadn't happened fore, so I re-tested it out in Windows Explorer and it does NOT do this. The linked directories are not touched. -Joe, finding the backups of the include and images directories. (I'm not on this list. Any

Re: Installing Tomcat 5 from JPackage

2004-02-04 Thread Joe Tseng
for me to mess around installing whatever else is required by the package definition.. Yiannis -- Joe Tseng To announce that there must be no criticism of the President, or that we are to stand by the President right or wrong, is not only unpatriotic and servile, but is morally treasonable

Installing Tomcat 5 from JPackage

2004-02-03 Thread Joe Tseng
(not provided) package tomcat5 needs javamail = 0:1.3 (not provided) package [snip] Any useful assistance in helping out a noob with installation is appreciated. -- Joe Tseng To announce that there must be no criticism of the President, or that we are to stand by the President right or wrong

[ANN] Pixory beta-3.5

2004-01-29 Thread joe panico
: This release introduces a new, more powerful, sharing model. You can find it here: http://www.pixory.org joe panico -- Open WebMail Project (http://openwebmail.org) - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands

[mod_jk] problem when tomcat is unreachable...

2004-01-26 Thread Joe Hung
this fix (configurable connect() timeout) should be checked in to handle network unreachable problem. opinions? suggestions? cheers, -joe - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Repeated load-on-startup niggle

2004-01-25 Thread Joe Francis
Chris, thanks for responding. I think I understand. Sanity check: the filter is not even mentioned anywhere in the webapps/hal heirarchy, right? That hierarchy is totally unaware of the filter. If that's the case then all is making sense now. thanks again, -joe Chris Ward wrote: Hi Joe

Re: Special URL servlet request.

2004-01-24 Thread Joe Francis
When I tried that approach (adding /* to the mapping), my servlet received the requests to those url's with additional path, and was able to extract the patch info using HttpServeltRequest.getPathInfo. But it was no longer able to find other content such as static html files and image files

Re: Repeated load-on-startup niggle

2004-01-24 Thread Joe Francis
web apps (such as the /bar webapp, with it's own /* filter). The original poster had a /hal context and a / context. Does the filter solution require the / context to remain? Or is that unneeded? thanks for any unconfusion, -joe

mod_jk/2 load balance multiple tomcat servers problem

2004-01-21 Thread Joe Aiello
connector between Apache and Tomcat to use that does not exhibit this behavior? I have tried a large number of configuration changes for both mod_jk 1.2.x and 2.x as well as different mod_jk versions. Thanks, Joe Aiello -Original Message- From: Rick Szeto [mailto:[EMAIL PROTECTED] Sent

RE: How to prevent HTTPS access?

2004-01-05 Thread joe
One method is to use the mod_rewrite module. You place the rewrite lines inside lt;VirtualHost _default_:443gt; section of your httpd.conf file. # These rewrite any requests for pages over SSL that do not have the terms 'forms, images, incl, onlineopinion' in the URL. #RewriteEngine

Remote Tomcat Server - Apache Connector over SSL

2003-12-30 Thread joe
Here's the scenario. Apache server sits outside our firewall/LAN. It needs to take secure requests from users, forward them onto Tomcat (Which sits behind the firewall) via the JK connector. Is there some configuration option in Tomcat and/or the workers2.properties config file that will

Re: Tomcat 4.1.29 war unpacking problems

2003-12-15 Thread Joe Francis
, -joe - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Tomcat 4.1.29 war unpacking problems

2003-12-12 Thread Joe Francis
thought I'd ask here. The goal is to be able to simply copy a .war into the right place and have a running tomcat deploy the servlet corerctly. cheers, -joe - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e

Connections Refused

2003-11-28 Thread Karau, Joe
We have started loadtesting the current release of our application, which on 4.1.12 we were able to acheive over 200 concurrent users. However, our current version is running on 4.1.24 and has not been able to respond to more than 100 users. When we have between 80-100 users using the system,

sun.misc.InvalidJarIndexException

2003-11-20 Thread Joe Fernandez
) at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:203) Many Thnx Joe Fernandez

jk2 error

2003-10-22 Thread Joe Leone
(): Bad signature 00 [Mon Oct 20 09:45:36 2003] [error] channelSocket.receive(): Bad header Thanks Joe - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Advanced Question about jsp:include / tag

2003-10-15 Thread Joe Krause
to the including of the page. Has anyone had this problem before? Is ther a way to tell tomcat to always go and get the page every time? Joe Krause

RE: tomcat jitters, then hangs - please help

2003-10-13 Thread Joe Zendle
We had the same problem w/ TC 4.1.27, sun jvm 1.4.2 and redhat 9. The thing wouldn't work for more than about 12 hours. IMHO, there are some fundamental problems with tomcat as of late. Hate to say it but we solved the problem by throwing away tomcat and using jetty! We are very pleased so far.

What is a good dev-enviroment for servlet/tomcat?

2003-10-08 Thread joe udder
Hello. I am thinking of how I can improve my development enviroment when doing my webapps. Until now, I've used a handcrafted build.xml to make my webapp, and then the usual _ Tired of spam? Get advanced junk mail protection with

What is a good dev-enviroment for servlet/tomcat?

2003-10-08 Thread joe udder
Hello. I was thinking about methods to improve my so called development enviroment, and I am curious to learn how others do when they work. Until now I use a handcrafted build.xml which by using ant builds the jars, classes, creates WEB-INF and all that stuff. Later I use the normal

RE: Tomcat hanging!! About to change container!! Please help!!

2003-10-03 Thread Joe Zendle
Thanks for the suggestions. I made all of the changes except for using a text realm. Here are 2 thread traces. One is for a quiet server. The other is after the server sat overnight. I did a wget and the server hung. I immediately did a kill -QUIT. Looks like there is a hang in the Logging?!

RE: Tomcat hanging!! About to change container!! Please help!!

2003-10-03 Thread Joe Zendle
hanging!! About to change container!! Please help!! Howdy, Attachments don't come through the list server... Yoav Shapira Millennium ChemInformatics -Original Message- From: Joe Zendle [mailto:[EMAIL PROTECTED] Sent: Friday, October 03, 2003 1:03 PM To: Tomcat Users List Subject: RE

Tomcat hanging!! About to change container!! Please help!!

2003-10-02 Thread Joe Zendle
We have 10 days until we go GA. We are experiencing periodic and regular lockups of Tomcat. We are testing on a machine that is fairly loaded with background work (about 50% cpu). Our web app is accessed by very few users so Tomcat per se, is not under load handling requests. After say 10-12

JK2 log location, anyone?

2003-10-02 Thread Joe Barefoot
that I've gotten the IIS-Tomcat redirect working, I just want to know where the log info goes. thanks, Joe -Original Message- From: Joe Barefoot Sent: Wednesday, October 01, 2003 4:46 PM To: Tomcat Users List Subject: where the heck is JK2 log? Hi all, I've gotten the IIS-Tomcat redirect

[thank you] RE: JK2 log location, anyone?

2003-10-02 Thread Joe Barefoot
. These are the docs I've been going by: http://jakarta.apache.org/tomcat/tomcat-4.1-doc/jk2/index.html I've gone through the docs above for JK2 quite a bit, and all the info there indicates logging is controlled through registry keys thanks again, Joe -Original Message- From: Mark Eggers

where the heck is JK2 log?

2003-10-01 Thread Joe Barefoot
are actually going. I have tried these reg. keys, and some others, with no luck: logFile=C:\\somePath\\someFile.log log_file=C:\\somePath\\someFile.log ...so, could any kind soul tell me where the JK2 log goes by default, or how to indicate to the redirector where it should go? thanks, Joe

RE: Signal 11 Error: An unexpected exception in native code outside the VM

2003-09-30 Thread joe gspeed
Right now the server has all of the latest and greatest patches from Red Hat. We are still seeing crashes about once a day. I am also observing a significant memory leak on this box, though I can't figure out if its Tomcat, java, the code or something else - once the memory gets low enough

Tomcat connector for Apache 2.0.47 ... Please Help

2003-09-25 Thread Joe Mihalich
, Joe

RE: Tomcat connector for Apache 2.0.47 ... Please Help

2003-09-25 Thread Joe Mihalich
Dean, Thanks for your reply. I need to figure out how to Do this asap. Can you email me your document to [EMAIL PROTECTED] ? Where did you read/find out about this workers2.properties and jk2.shm File? How did this change so much from the existing documentation? Thanks, Joe

Signal 11 Error: An unexpected exception in native code outside the VM

2003-09-22 Thread joe gspeed
Hoping that someone can help me with Tomcat crashes we are experiencing.  Here is our setup: Tomcat Box: Dual 2.4Ghz Xeon (w/hyperthreading) RedHat 7.3 running Tomcat 4.0.6 and Java SDK 1.4.2 Apache Box: Dual 2.4Ghz Xeon (w/hyperthreading) RedHat 7.3 running Apache 2.0.47 (using the worker MPM

Re: Load Balancing with MOD_JK and MOD_JK2 on windows.

2003-09-11 Thread Joe Harmon
That fixed it thanks Joe Harmon Web Services Support Novell Inc. - The leading provider of Information Solutions. (801) 861-9163 [EMAIL PROTECTED] [EMAIL PROTECTED] 9/11/2003 7:09:05 AM Joe Harmon wrote: Please, please, please, can someone help. MOd_JK2 issue: If I am using mod_jk2

  1   2   3   4   >