JSP 2.1 support?

2005-08-23 Thread Jonathan Eric Miller
Does anyone know when JSP 2.1 support is expected? Will that be in Tomcat 6? Jon - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Can't get apache to connect to tomcat

2005-08-20 Thread Jonathan August
I'm trying to get requests going to www.mydomain.com/servlets/ to get handed off to tomcat. I have the mod_jk module loaded: Apache/2.0.54 (Unix) mod_ssl/2.0.54 OpenSSL/0.9.7f mod_jk/1.2.14 Server at www.mydomain.com Port 80 and I get the Tomcat/5.0.28 welcome screen when I go to:

no host matches server name localhost

2005-04-27 Thread Jonathan August
I installed Tomcat 5.0.30 using yum on Fedora Core 3. When I try to connect to http://localhost:8080/, I get: Alert!: HTTP/1.1 400 No Host matches server name localhost I'm sure I'm missing something simple, but I'm pretty new at this, so I'm not sure what to check.

Re: no host matches server name localhost

2005-04-27 Thread Jonathan August
file? Jonathan August wrote: I installed Tomcat 5.0.30 using yum on Fedora Core 3. When I try to connect to http://localhost:8080/, I get: Alert!: HTTP/1.1 400 No Host matches server name localhost I'm sure I'm missing something simple, but I'm pretty new at this, so I'm not sure what to check

Re: no host matches server name localhost

2005-04-27 Thread Jonathan August
your server.xml file if you can't work it out. Rod Jonathan August wrote: This is my /etc/hosts: [jon ~]$ cat /etc/hosts # Do not remove the following line, or various programs # that require network functionality will fail. 127.0.0.1 localhost.localdomain localhost On Apr 27, 2005, at 3:52

Re: no host matches server name localhost

2005-04-27 Thread Jonathan August
I think I was just missing a Context. Thanks for the help, Rod!! -Jon On Apr 27, 2005, at 4:24 PM, Jonathan August wrote: Hmm, I have pretty much what you have. Here's the whole server.xml: Server port=8005 shutdown=SHUTDOWN debug=0 Listener className

Possible to include JSP document (.jspx) fragments that aren't well formed?

2005-04-25 Thread Jonathan Eric Miller
Does anyone know if it's possible to include a .jspx fragment in another .jspx file? When I say .jspx fragment, I mean a file that is in XML format, but, may not be well formed. For example, I want to do something like the following. Currently, I'm receiving an error message like the

Re: JULI and logging

2005-04-14 Thread Jonathan Eric Miller
I haven't tried it yet, but, I noticed that catalina.sh/bat, looks for a jar file named tomcat-juli.jar and if it's present, it adds a -Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager to JAVA_OPTS. I think if you rename or remove that jar file, it will disable it (haven't

Re: Way to specify SingleSignOn session timeout?

2005-04-14 Thread Jonathan Eric Miller
After looking at the code, it looks like the SSO session doesn't go away until all other sessions for the user have expired. So, as far as I can tell, the SSO session doesn't have it's own session timeout as far as I can tell. Jon - Original Message - From: Jonathan Eric Miller [EMAIL

Re: Way to specify SingleSignOn session timeout?

2005-04-14 Thread Jonathan Eric Miller
After looking at the code, it looks like the SSO session doesn't go away until all other sessions for the user have expired. So, as far as I can tell, the SSO session doesn't have it's own session timeout as far as I can tell. Jon - Original Message - From: Jonathan Eric Miller [EMAIL

Re: Way to specify SingleSignOn session timeout?

2005-04-13 Thread Jonathan Eric Miller
by modifying the value -- session-config session-timeout30/session-timeout /session-config Peter Jonathan Eric Miller schrieb: I'm using the SingleSignOn valve with Tomcat 5.5.9. Does anyone know what the default session timeout is set to? Is there a way to specify

Re: Upgrading from tomcat 3.2.2 to 3.3.2 on Windows

2005-04-13 Thread Jonathan Eric Miller
Reading the changelog is a good place to start... Jon - Original Message - From: Horvath, Ruth (Ruth) ** CTR ** [EMAIL PROTECTED] To: tomcat-user@jakarta.apache.org Sent: Wednesday, April 13, 2005 12:16 PM Subject: Upgrading from tomcat 3.2.2 to 3.3.2 on Windows Sorry if this has been

Re: logging to seperate log file per war file

2005-04-12 Thread Jonathan Eric Miller
My guess (but, I'm not a Tomcat developer so what do I know! ;-)) is that you can't do it for System.out.println(). However, I did notice that System.setOut() allows you to redirect where standard out goes. However, I'm guessing that that would be for the entire JVM? As of Tomcat 5.5.9 they

Way to specify SingleSignOn session timeout?

2005-04-12 Thread Jonathan Eric Miller
I'm using the SingleSignOn valve with Tomcat 5.5.9. Does anyone know what the default session timeout is set to? Is there a way to specify this timeout? I'm finding that sometimes my session will timeout within an application, but, it doesn't redisplay the login page. I want to try to set it

Specifying logging.properties file via system property doesn't work?

2005-04-11 Thread Jonathan Eric Miller
Until Tomcat 5.5.9 I was specifying my java.util.logging.config.file using a system property set using CATALINA_OPTS like the following. CATALINA_OPTS='-Djava.util.logging.config.file=/opt/jakarta-tomcat-dev/conf/logging.properties

Multiple threads for one submit...how to limit?

2005-03-10 Thread Jonathan Wilson
I need some good advice: I've got a production app running on a Redhat box that is having problems with the SAN which is causing all processes to slow/stall with heavy IO(CPU util is like 3%); the network/admin guys are working on that part but it's been ongoing. On two occasions during

Re: Equivalent of Resin run-at servlet configuration

2005-03-03 Thread Jonathan Wilson
Well, I use a servlet that is kicked off at container start(On TC 3.x used load-on-startup attribute, TC 5.x+ there is something else which is now part of the J2EE spec). Most other containers have a load-on-startup type attribute available to them. When that servlet is init()ed at container

custom login form

2005-03-01 Thread Jonathan Halliday
it's very much a last resort. Dumping the authentication support provided by the spec/container in favour of our own filters is another unpleasant alternative. Can anyone suggest a better approach? Thanks Jonathan

Re: Recommendation: where to place app config file without overwriting during deploy. JNDI configuration also??

2005-02-08 Thread Jonathan Wilson
do you make changes to the context.xml? Thanks in advance, JW Jonathan Wilson wrote: My current upgrade procedures are to shutdown tomcat 3.x, move the current version of my webapp directory somewhere else, recreate the /webapp directory, then un-jar the war file created by NetBeans. After

Re: Updating running WARs?

2005-02-04 Thread Jonathan Wilson
, stop TC, start TC, deploy the service using the Manager, start service if necessary. Just my .02 For more info search the archives...it's come up more than a few times since I've been on this list. --Jonathan Wendy Smoak wrote: From: David Wood [EMAIL PROTECTED] are we forced to remove

Where / How to place app config file without overwriting during deploy

2005-01-17 Thread Jonathan Wilson
My current upgrade procedures are to shutdown tomcat 3.x, move the current version of my webapp directory somewhere else, recreate the /webapp directory, then un-jar the war file created by NetBeans. After doing this I then have to modify the WEB-INF/app.config file with customer-specific

Servlet static variable not accessible from init() ??

2005-01-17 Thread Jonathan Wilson
I'm setting a servlets private static variable from within itself via the contextInitialized(SCE) method but it's not accessible from the init() method once that get's called...I would have thought the static part would make that variable accessible to all thread of the servlet that was

Re: Servlet static variable not accessible from init() ??

2005-01-17 Thread Jonathan Wilson
for responding, JW QM wrote: On Mon, Jan 17, 2005 at 04:08:15PM -0600, Jonathan Wilson wrote: : I'm setting a servlets private static variable from within itself via : the contextInitialized(SCE) method but it's not accessible from the : init() method once that get's called...I would have

Where / How to place app config file without overwriting

2005-01-14 Thread Jonathan Wilson
My current upgrade procedures are to shutdown tomcat 3.x, move the current version of my webapp directory somewhere else, recreate the /webapp directory, then un-jar the war file created by NetBeans. After doing this I then have to modify the WEB-INF/app.config file with customer-specific

Where / How to place app config file without overwriting

2005-01-12 Thread Jonathan Wilson
My current upgrade procedures are to shutdown tomcat 3.x, move the current version of my webapp directory somewhere else, recreate the /webapp directory, then un-jar the war file created by NetBeans. After doing this I then have to modify the WEB-INF/app.config file with customer-specific

Re: WAR files and Eclipse

2004-12-13 Thread Jonathan Wilson
I tried eclipse, but man was it hard to get configured properly. I wanted to use Eclipse/MyEclipse since I do Perl/C/C++ work as well and thought one tool that binds them all, yada yada yada. I then tried NetBeans and it worked for my environment 'out-of-the-box'. It took zero configuration

Re: Redirecting not https to https

2004-11-19 Thread Jonathan Eric Miller
Also, you'll need something like the following in your web.xml. security-constraint web-resource-collection web-resource-name/web-resource-name url-pattern/*/url-pattern /web-resource-collection user-data-constraint transport-guaranteeCONFIDENTIAL/transport-guarantee /user-data-constraint

Disadvantages to using unpackWARs=false?

2004-11-18 Thread Jonathan Eric Miller
Does anyone know if there are disadvantages to setting unpackWARs=false? What I'm wondering is if it then has to uncompress the .war file everytime a resource is accessed thus causing a performance hit? Jon - To unsubscribe,

Re: Disadvantages to using unpackWARs=false?

2004-11-18 Thread Jonathan Eric Miller
OK, thanks for the info. Like you mentioned, I was thinking that redeployment would be easier with it set to false. I just wanted to make sure that I wouldn't be incurring a performance hit and the expense of not having to mess around with an extra directory. Thanks. Jon - Original Message

Tomcat 5.5 nightly zip files?

2004-11-17 Thread Jonathan Eric Miller
Anyone know if there are nightly zip files for Tomcat 5.5? Jon - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Tomcat 5.5 nightly zip files?

2004-11-17 Thread Jonathan Eric Miller
binaries download page even gives you the link at the bottom ;) http://cvs.apache.org/builds/jakarta-tomcat-5/nightly/. Nightlies are always at your own risk. Yoav Shapira http://www.yoavshapira.com -Original Message- From: Jonathan Eric Miller [mailto:[EMAIL PROTECTED] Sent: Wednesday, November

Re: Tomcat 5.5 nightly zip files?

2004-11-17 Thread Jonathan Eric Miller
Thanks! Jon - Original Message - From: Shapira, Yoav [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Wednesday, November 17, 2004 12:07 PM Subject: RE: Tomcat 5.5 nightly zip files? Hi, Yeah. They're built from CVS HEAD (there's very little purpose to nightlies

Re: Tomcat 5.5.4, Logging and the death of my friend localhost_log

2004-11-12 Thread Jonathan Eric Miller
Actually, I guess the default isn't that bad for UNIX/Linux anyway. In theory, if you are using J2SE 1.5 with the default log settings and you don't have Log4J installed, INFO level messages and above will get written to the console which gets redirected to catalina.out by catalina.sh. So,

Re: Auto-deploy not working in Tomcat 5.5.4 when .war file has a META-INF/context.xml?

2004-11-11 Thread Jonathan Eric Miller
Here's the message without the file attachments since the original message was blocked as spam. I don't see a way to post file attachments to the bug database either... Jon - Original Message - From: Jonathan Eric Miller [EMAIL PROTECTED] To: Remy Maucherat [EMAIL PROTECTED]; Tomcat

Re: Tomcat 5.5.4, Logging and the death of my friend localhost_log

2004-11-11 Thread Jonathan Eric Miller
So, exceptions aren't logged by default? Does the new log4j method give you full stack traces, or, is it just one line error messages? If I don't configure log4j, does that mean that exceptions can be occurring and I won't know about it? IMHO, a decent default logging configuration should be

Re: Auto-deploy not working in Tomcat 5.5.4 when .war file has a META-INF/context.xml?

2004-11-11 Thread Jonathan Eric Miller
I don't see it at least on the inital bug report page at http://nagoya.apache.org/bugzilla/enter_bug.cgi?product=Tomcat%205 Maybe I need to commit the page first and there's another page... I don't want to submit a report just yet, because I'm still in the process of trying to figure out how

Re: Testing/Development environment setups..

2004-11-11 Thread Jonathan Wilson
) - staging It sounds like a lot of environments and a lot of paperwork but CVS + ANT plus a shared build philosphy makes this very manageable. -Tim Jonathan Wilson wrote: This is a general How do you develop a webapp with tomcat/ant with a different development/production server I'm trying

Re: Auto-deploy not working in Tomcat 5.5.4 when .war file has a META-INF/context.xml?

2004-11-11 Thread Jonathan Eric Miller
not working in Tomcat 5.5.4 when .war file has a META-INF/context.xml? On Thu, 11 Nov 2004 11:09:58 -0600, Jonathan Eric Miller [EMAIL PROTECTED] wrote: I don't see it at least on the inital bug report page at http://nagoya.apache.org/bugzilla/enter_bug.cgi?product=Tomcat%205 Maybe I need to commit

Re: Tomcat 5.5.4, Logging and the death of my friend localhost_log

2004-11-11 Thread Jonathan Eric Miller
not being reported into the stdout. where is all the runtime exception stack tracing supposed to go Yoav? that won't be picked up by log4j which is a good point cheers! -Original Message- From: Jonathan Eric Miller [mailto:[EMAIL PROTECTED] Sent: Thu 11/11/2004 16:50 To: Tomcat Users List Cc

Auto-deploy not working in Tomcat 5.5.4 when .war file has a META-INF/context.xml?

2004-11-10 Thread Jonathan Eric Miller
I have an application which has a META-INF/context.xml file. I'm attempting to have the file auto-redeploy itself everytime I copy an updated the updated .war file to the webapps directory. This worked fine in Tomcat 5.0.25. In Tomcat 5.5.4, it will deploy itself the first time through, but,

Re: Form-based login question - explicit login

2004-11-05 Thread Jonathan Wilson
There's probably a much better way, but I like the fine-grained approach I use. Unfortunately(or fortunately) it requires *every* page you want access controlled to have a jsp:include tag. The included jsp file checks a session variable to determine if the user is logged in, and whether or not

Re: Response and file downloads

2004-11-01 Thread Jonathan Wilson
of this) window which in effect 'clicks' on the link I created. Works nicely...so far. I'm not a HTML/Javascript guru so I can't tell you how long this trick will work. Good luck --Jonathan Justin Ruthenbeck wrote: At 12:17 PM 11/1/2004, you wrote: I am not sure what you are refering to as atypical

Testing/Development environment setups..

2004-10-21 Thread Jonathan Wilson
when it's deployed? Any hints/suggestions are appreciated. --Jonathan - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Testing/Development environment setups..

2004-10-21 Thread Jonathan Wilson
Yoav, Ben: Thanks for the tips - I think I finally have a grasp on how a real project would be run properly. I already use MySQL, cvs(in a manual fashion), ant(still new) so I'm not that far away. Development Box Question: Is it *inadvisable* to do the development using the same tomcat

Re: Testing/Development environment setups..

2004-10-21 Thread Jonathan Wilson
TABLE etc.) those changes in the production database during the deploy process, yes? --Jonathan Ben Souther wrote: On Thu, 2004-10-21 at 17:42, Matt Bathje wrote: Jonathan Wilson wrote: Yoav, Ben: Thanks for the tips - I think I finally have a grasp on how a real project would be run properly

Re: Testing/Development environment setups..

2004-10-21 Thread Jonathan Wilson
could really hammer away at the production database and check results/debug without actually impacting everyone who's using the system! --Jonathan Tim Funk wrote: There should be no reason you are not able to do all your development on a windows laptop. That being said ... here's how we do things

Re: Load-on-Startup child-threads not dying at context-reload

2004-10-19 Thread Jonathan Wilson
Great ideas Yoav. Thank you for your comments/input. --JW Shapira, Yoav wrote: Hi, Hmm, then is there a recommended way for managing child threads that are kicked off by a servlet? My servlet reads an XML file to determine what classes to create and run - but if the Servlet itself goes

Load-on-Startup child-threads not dying at context-reload

2004-10-18 Thread Jonathan Wilson
I have a load-on-startup1/load-on-startup Servlet on TC3.3.1(under RH7.3) which checks an XML file which contains a list of Runnable classes to kick off at servlet startup. These child threads all belong to the same threadgroup(however, not the same threadgroup of the spawner servlet). These

Re: Load-on-Startup child-threads not dying at context-reload

2004-10-18 Thread Jonathan Wilson
I'm working on getting the next release out on TC5. I don't think that would fix my threading issue, however. JW Ben Souther wrote: If upgrading Tomcat is possible, a context listener would be a better design. On Mon, 2004-10-18 at 15:51, Jonathan Wilson wrote: I have a load-on-startup1/load

Re: Load-on-Startup child-threads not dying at context-reload

2004-10-18 Thread Jonathan Wilson
Hi, Shapira, Yoav wrote: Hi, servlet). These are daemon threads, and have the setDaemon(true) set for the thread before I kickoff the runnable class. The problem I'm experiencing is that when the context needs to be reloaded these child threads are not killed, but continue to run.

Re: Tomcat 5 pause (free gmail account for fix :-)

2004-10-14 Thread Jonathan Wilson
stop growing!) I'd look into indirectly referenced objects..here's a link to an article about this behavior(good performance analysis info): http://www.opensourcetutorials.com/tutorials/Server-Side-Coding/Java/java-garbage-collection-performance/page4.html --Jonathan Sam Gallant wrote: Everyone

mandatory packages for beans in Tomcat 5.0?

2004-10-14 Thread Jonathan Wilson
I'm evaluating TC 5.0 on Windows XP, coming from TC 3.3.1 on RH7.3. I can't get TC 5.0 to recognize any beans I put in the WEB-INF/classes directory(windows perms all good). If I put the bean into a package and create the proper subdirectory under WEB-INF/classes/ it sees the bean. I don't have

Re: mandatory packages for beans in Tomcat 5.0?

2004-10-14 Thread Jonathan Wilson
Thanks to Larry and Yoav. I'm sorry that I didn't search hard enough(TC FAQ. duh!) and asked such a simple question. :) --JW Shapira, Yoav wrote: Hola, http://jakarta.apache.org/tomcat/faq/classnotfound.html Yoav Shapira http://www.yoavshapira.com -Original Message- From: Jonathan

Re: reloading JSP files without reloading classes/beans

2004-10-13 Thread Jonathan Wilson
://www.onjava.com/pub/a/onjava/2004/04/14/clustering.html Regards, JW Robert Bateman wrote: On Mon, 2004-10-11 at 18:27, Jonathan Wilson wrote: Bob, You just answered my follow up to your previous email :) Hmm, so I run a concurrent version of my production app(being careful not to impact

Re: reloading JSP files without reloading classes/beans

2004-10-12 Thread Jonathan Wilson
/scripts that create WAR's and deploys them for you. http://jakarta.apache.org/tomcat/tomcat-3.2-doc/appdev/contents.html --JW QM wrote: On Mon, Oct 11, 2004 at 05:27:05PM -0500, Jonathan Wilson wrote: : New Question (While I've got ya :): Given that I can use a WAR file : to deploy, would you

reloading JSP files without reloading classes/beans

2004-10-11 Thread Jonathan Wilson
Hello, I'm running 3.3.1 (and yes, I'll be upgrading to 5.x in the next few weeks as time allows) and want to reload JSP files, but not any class files. The root of the problem is that during beta testing I'm making lots of changes quickly(to JSP and classes/beans), but my system is in use.

Ideas on deploying a web-app piece-meal

2004-10-11 Thread Jonathan Wilson
I need some advice/HOW-TO's on developing and then deploying web-apps to a production server. I've yet to find anything comprehensive and that details the pros/cons of each method. Ideas/links? Thanks, JW - To unsubscribe,

Re: reloading JSP files without reloading classes/beans

2004-10-11 Thread Jonathan Wilson
machine where I can make changes without affecting anyone else. Bob On Mon, 2004-10-11 at 16:51, Jonathan Wilson wrote: Hello, I'm running 3.3.1 (and yes, I'll be upgrading to 5.x in the next few weeks as time allows) and want to reload JSP files, but not any class files. The root

Re: Problem configuring a global resource to be linked from Context elements ....

2004-09-17 Thread Jonathan Rengifo
you gave me goes according to the ClassLoader documentation so you were just rigth.. Thanks to all of you... Regards Jonathan M. Rengifo On Fri, 17 Sep 2004 08:10:13 -0400, Shapira, Yoav [EMAIL PROTECTED] wrote: Hi, I think it is because of the way Tomcat classloaders work. Classes

Re: Problem configuring a global resource to be linked from Context elements ....

2004-09-16 Thread Jonathan Rengifo
as a global resource when I link it through the ResourceLink element, like this: ResourceLink name=jdbc/app global=jdbc/app type=javax.sql.DataSource/ inside every context element I need... Thanks to all... Regards Jonathan On Thu, 16 Sep 2004 18:35:51 +0530, Antony Paul [EMAIL PROTECTED

Re: Problem configuring a global resource to be linked from Context elements ....

2004-09-16 Thread Jonathan Rengifo
Hi again and thanks to all... :D Antony, please can you tell what is dbcp.jar and where I can find it? so I can try your recommendation... Thanks... Jonathan On Thu, 16 Sep 2004 18:35:51 +0530, Antony Paul [EMAIL PROTECTED] wrote: Had you tried it with inside Context element. If it doesn't

Re: Problem configuring a global resource to be linked from Context elements ....

2004-09-16 Thread Jonathan Rengifo
Hi to all... Antony, sorry I have already found dbcp.jar and know what it does, but don't understand why I should copy it to my WEB-INF/lib application source ? On Thu, 16 Sep 2004 11:06:53 -0400, Jonathan Rengifo [EMAIL PROTECTED] wrote: Hi again and thanks to all... :D Antony, please can

Problem configuring a global resource to be linked from Context elements ....

2004-09-15 Thread Jonathan Rengifo
/ResourceParams /GlobalNamingResources Thanks .. Jonathan - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

ResourceLink proble

2004-09-09 Thread Jonathan Rengifo
linking an Oracle database resource configurated inside the GlobalNamingResources element, so I can link this resource on several context configurated on my virtual hosts... Regards Jonathan M. Rengifo - To unsubscribe, e-mail

Commit Changes result in an error in the admin site

2004-09-09 Thread Jonathan Taub
Just installed Tomcat 5.5 on my windows platform. When going to the administration site, every time I hit the Commit Changes button an error occurs. Browsing the log files I found that: java.io.FileNotFoundException: C:\Program Files\Apache Software Foundation\Tomcat

Problems upgrading to Tomcat 5

2004-09-06 Thread Jonathan Rengifo
5.0.28 relesed few days ago, to see if problem solves, but don´t know what are the advantages and bugfixes it has regarding 5.0.27 release I am using, can you please tell me some or where to read them? Any help or comments you have would be very appreciated... Regards Jonathan

Re: Problems upgrading to Tomcat 5

2004-09-06 Thread Jonathan Rengifo
see my last posted message Problems upgrading to Tomcat 5) On Mon, 6 Sep 2004 15:32:41 -0400, Jonathan Rengifo [EMAIL PROTECTED] wrote: Hi all... I am preparing a new production web sever configured with Apache 2 serving static content and Tomcat 5.0.27 serving dynamic content via TCP JK2

Re: Fatal: relocation error: file libapr-0.so.0: symbol __divdi3: referenced symbol not found

2004-09-03 Thread Jonathan Rengifo
would be very helpful Regards Jonathan On Fri, 03 Sep 2004 09:13:58 -0400, John Villar [EMAIL PROTECTED] wrote: 1-Sep-2004 1:46:26 PM org.apache.jk.common.ChannelSocket init INFO: JK2: ajp13 listening on /0.0.0.0:8009 These two lines say that the JK2 connector has started normally

Re: Fatal: relocation error: file libapr-0.so.0: symbol __divdi3: referenced symbol not found

2004-09-03 Thread Jonathan Rengifo
-Fire-V210/lib/libmd5_psr.so.1 Then I those libs for the symbol, and don't find it... What does this mean? Thanks .. Jonathan On Fri, 3 Sep 2004 10:01:01 -0500, QM [EMAIL PROTECTED] wrote: On Fri, Sep 03, 2004 at 10:44:13AM -0400, Jonathan Rengifo wrote: : nm /usr/local/apache-httpd

Re: Fatal: relocation error: file libapr-0.so.0: symbol __divdi3: referenced symbol not found

2004-09-03 Thread Jonathan Rengifo
Because of this error I did put the libjkjni.so lib on the LD_LIBRARY_PATH... Any suggestions?? Regards Jonathan On Fri, 3 Sep 2004 11:50:11 -0400, Jonathan Rengifo [EMAIL PROTECTED] wrote: Hi, thanks for your very important help.. I ran the ldd utility on the libapr-0.so.0 lib

Re: Fatal: relocation error: file libapr-0.so.0: symbol __divdi3: referenced symbol not found

2004-09-03 Thread Jonathan Rengifo
debug it and find what/where is happenning Jonathan Rengifo escribió: Hi, all... My problem is definitive related with the libjkjni.so lib, when I add the path of the library to the LD_LIBRARY_PATH I get the error message: ld.so.1: /usr/java/bin/java: fatal: relocation error: file

Re: Fatal: relocation error: file libapr-0.so.0: symbol __divdi3: referenced symbol not found

2004-09-03 Thread Jonathan Rengifo
I've already setup the CATALINA_HOME and TOMCAT_HOME path variables Any other suggestion? :'( Regards Jonathan On Fri, 03 Sep 2004 16:54:36 -0400, John Villar [EMAIL PROTECTED] wrote: Maybe its because of the tomcat classpath, remember it doesn't use the system wide classpath, but its

Re: Fatal: relocation error: file libapr-0.so.0: symbol __divdi3: referenced symbol not found

2004-09-03 Thread Jonathan Rengifo
for you help, any other comments from you all is welcome... Regards Jonathan On Fri, 03 Sep 2004 17:02:37 -0400, John Villar [EMAIL PROTECTED] wrote: I remember an issue i was having with JNI where the Hotspot compiler and the JVM should have a proper directory structure, it was something like

Re: Fatal: relocation error: file libapr-0.so.0: symbol __divdi3: referenced symbol not found

2004-09-03 Thread Jonathan Rengifo
I am really worry about speed, we have a very accessed news server and speed was my really problem, but if you say its ok maybe I don't have nothing to worry about. Thanks for your time and attention Regards Jonathan On Fri, 03 Sep 2004 17:28:43 -0400, John Villar [EMAIL PROTECTED] wrote

Re: Fatal: relocation error: file libapr-0.so.0: symbol __divdi3: referenced symbol not found

2004-09-03 Thread Jonathan Rengifo
library libapr-0.so.0. Thanks for your time, any suggestion would be welcome Jonathan On Fri, 03 Sep 2004 18:31:27 -0400, Wade Chandler [EMAIL PROTECTED] wrote: Jonathan Rengifo wrote: I made the test with succesful results, I guess it is a linking problem, but don't know how to solve

Re: TC 5.5 - 4 issues (jasper, ROOT, jndi, logging)

2004-09-02 Thread Jonathan Eric Miller
I ran into the same issue with DBCP and JNDI. Jon - Original Message - From: Allistair Crossley [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Thursday, September 02, 2004 8:32 AM Subject: TC 5.5 - 4 issues (jasper, ROOT, jndi, logging) Hi Guys Decided to give TC 5.5 /

Fatal: relocation error: file libapr-0.so.0: symbol __divdi3: referenced symbol not found

2004-09-02 Thread Jonathan Rengifo
solution to this The worker2property, jk.property and httpd.conf configuration files are setup correctly. Please, any comment from you would be very helpful. Thanks. Jonathan M. Rengifo [EMAIL PROTECTED] - To unsubscribe, e

Re: Fatal: relocation error: file libapr-0.so.0: symbol __divdi3: referenced symbol not found

2004-09-02 Thread Jonathan Rengifo
=/opt/csw/lib:/usr/local/apache/modules Any other suggestion? Thanks for your help Regards ... Jonathan On Thu, 2 Sep 2004 17:38:46 -0500, QM [EMAIL PROTECTED] wrote: On Thu, Sep 02, 2004 at 06:25:53PM -0400, Jonathan Rengifo wrote: : 1-Sep-2004 1:46:26 PM org.apache.jk.common.ChannelSocket

How to configure logs in Tomcat 5.5?

2004-09-01 Thread Jonathan Eric Miller
I noticed in the change log that some changes have been made to the way things are logged in Tomcat 5.5. I was using something like the following in my server.xml previously. However, this no longer works. Logger className=org.apache.catalina.logger.FileLogger directory=logs

Context path= docBase=ROOT... fails in Tomcat 5.5?

2004-09-01 Thread Jonathan Eric Miller
In Tomcat 4.0 and 5.0, I had the following in my server.xml file. Context path= docBase=ROOT debug=0 reloadable=true/ However, if I try to use this in Tomcat 5.5, I receive the following error in catalina.out. Does anyone know if I need to change something to get it to work with Tomcat 5.5, or,

Re: How to configure logs in Tomcat 5.5?

2004-09-01 Thread Jonathan Eric Miller
, System.out/System.err still behave as before, and the ServletContext#log method works without any special configuration. Yoav Shapira Millennium Research Informatics -Original Message- From: Jonathan Eric Miller [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 01, 2004 12:46 PM To: Tomcat User

Re: Context path= docBase=ROOT... fails in Tomcat 5.5?

2004-09-01 Thread Jonathan Eric Miller
context configured for the path? Yoav Shapira Millennium Research Informatics -Original Message- From: Jonathan Eric Miller [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 01, 2004 2:20 PM To: Tomcat User List Subject: Context path= docBase=ROOT... fails in Tomcat 5.5? In Tomcat 4.0

Re: symbolic links in webapps

2004-09-01 Thread Jonathan Eric Miller
If I remember correctly, symlinks are disabled by default. I think you can turn them on using an attribute value for an element in server.xml. Jon - Original Message - From: Philippe Mathieu [EMAIL PROTECTED] To: Tomcat User List [EMAIL PROTECTED] Sent: Wednesday, September 01, 2004

Re: How do I make my servlet the welcome page

2004-09-01 Thread Jonathan Eric Miller
The problem that I found with doing it this way is that I had a security-constraint on my application and it wasn't being enforced when I tried to do that. So, I created an index page that redirects to the application. Jon - Original Message - From: QM [EMAIL PROTECTED] To: Tomcat

Re: Context path= docBase=ROOT... fails in Tomcat 5.5?

2004-09-01 Thread Jonathan Eric Miller
and paste configuration files across release versions, be careful. Yoav Shapira Millennium Research Informatics -Original Message- From: Jonathan Eric Miller [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 01, 2004 2:37 PM To: Tomcat Users List Subject: Re: Context path= docBase=ROOT

RE: JasperException in custom tag processing

2004-07-29 Thread Jonathan Oddy
to arbitrarily choose the wrong method to construct in its Java representation of my JSP. I still don't know why tomcat coped with setFirst as it is also overloaded... Jonathan - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

JasperException in custom tag processing

2004-07-28 Thread Jonathan Oddy
= actStartDate second= actEndDate targetDate=nowDate %-- do all day dependent presentation here --% /spDate:allDay Any help/thoughts/suggestions greatly appreciated. Jonathan

Website Planning

2004-07-27 Thread Jonathan
. a single web app or multiple web apps, how to include the nav if it's multiple web apps, etc) Thanks. - Jonathan - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Newbie: Cronolog

2004-07-26 Thread Jonathan
to configure tomcat to do the same thing. Is this possible? Thanks! - Jonathan - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Multiple Webbapps, single login.jsp??

2004-07-26 Thread Jonathan
to do this, or am i just going about organizing the website/webapps wrong? Thanks! - Jonathan - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Multiple Webbapps, single login.jsp??

2004-07-26 Thread Jonathan
site, or a global navbar seems to not be written down anywhere. :) Or maybe I'm just missing something obvious. (which is probably the case) - Jonathan Schalk Neethling wrote: Jonathan You can probably do this by giving each user a specific role that will allow him/her access to only certain areas

Re: Bizarre parse error

2004-06-28 Thread Jonathan Melhuish
Sorry for wasting your time, I eventually tracked this down to a 'response.setContentType(text/xml);' which was hidden inside the code that generated the XML content! It took me far too long, really... Cheers, Jon Jonathan Melhuish wrote: In the absence of any more logical suggestions, I've

Re: Bizarre parse error

2004-06-22 Thread Jonathan Melhuish
into a string * It doesn't work when I try to pass the XML directly from one to the other Any ideas?! Cheers, Jon Jonathan Melhuish wrote: I've got a rather bizarre problem which I can't quite get my head around, and was wondering if anybody might be able to help. I'm using Xalan to transform XML

Re: Bizarre parse error

2004-06-22 Thread Jonathan Melhuish
in the Latin-1 character set. Thanks for pointing me in the right direction, I hope you at least agree that this diagnosis wasn't exactly obvious from the initial symptoms! Cheers, Jon -Original Message- From: Jonathan Melhuish [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 22, 2004 11:44 AM

Bizarre parse error

2004-06-18 Thread Jonathan Melhuish
I've got a rather bizarre problem which I can't quite get my head around, and was wondering if anybody might be able to help. I'm using Xalan to transform XML into HTML4 using an XSLT stylesheet. The page appears to be generated correctly, from looking at the source code. However, upon loading,

Why don't updated unpacked WAR files get reloaded automatically?

2004-05-27 Thread Jonathan Eric Miller
I noticed that if you have unpackWARs set to false and you update a WAR file, it doesn't reload it. According to the Tomcat documentation at the following link, it only does it for unpacked WAR files. Why?

Re: Why don't updated unpacked WAR files get reloaded automatically?

2004-05-27 Thread Jonathan Eric Miller
redeploy the app via the manager (or whatever mechanism he/she wants to use). Yoav Shapira Millennium Research Informatics -Original Message- From: Jonathan Eric Miller [mailto:[EMAIL PROTECTED] Sent: Thursday, May 27, 2004 1:20 PM To: Tomcat User List Subject: Why don't updated

security-constraint question/problem

2004-05-26 Thread Jonathan Eric Miller
I am trying to configure my application so that everything has to be encrypted. I was able to do that by using the security constraint at the bottom of this message. I've had this working for awhile without a problem. However, now, I want to add an additional restriction. I want to make it so that

Re: Session Timeout and Direct Reference to login page

2004-05-24 Thread Jonathan Eric Miller
: Friday, May 21, 2004 7:15 AM Subject: Re: Session Timeout and Direct Reference to login page Jonathan Eric Miller wrote: Yeah, that seems like it would work. I'm wondering if I could maybe use a filter by itself though and not use the listener and do something like the following. 1

Re: Session Timeout and Direct Reference to login page

2004-05-20 Thread Jonathan Eric Miller
[EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Thursday, May 20, 2004 2:59 AM Subject: Re: Session Timeout and Direct Reference to login page Jonathan Eric Miller wrote: Thanks. I think option #1 is what I'm looking for. What I don't understand is what I need to do

  1   2   3   4   5   >