Re: servlet startup compile error

2002-11-25 Thread Bill Barker
The 'application' variable is only defined within the definition of the '_jspservice' method. And, this is how it should be. To get what you want you need: %! public void contextInitialized(ServletContextEvent sce) { // Relying on the fact that Jasper's base class extends GenericServlet

Re: Tomcat NT Service Runtime.exec()

2002-11-25 Thread Rodrigo Ruiz
At least, doing so you should be able to test you are doing things well. We have developed a service (an internal project, not Tomcat related), and it's able to execute any program, including shells. Check the security policy used by your Tomcat service. Perhaps you are not allowed to call the

RE: [OT] Re: is there a free ide that gets along well with tomcat?

2002-11-25 Thread Steve Beech
I'm using JEdit4 (http://www.jedit.org/) which I like a lot. It doesn't use much memory at all and has some extremely useful plugins. Open source too. Steve -Original Message- From: Chris Gokey [mailto:[EMAIL PROTECTED]] Sent: 22 November 2002 02:29 To: Tomcat Users List Subject: Re:

Set Jikes Path

2002-11-25 Thread Lee Peik Feng
Hi all, I am using jikes1.18 with tomcat 4.1.12 on Linux. My question is: is it possible for me to set Jikes path if I dun't put the jikes in my system path? As for tomcat 4.0, I can set jspCompilerPath in tomcat/conf/web.xml, as below: init-param

jk2 + SSL

2002-11-25 Thread Alex Fritze
Hi, I'm running Apache 1.3 with mod_ssl/Tomcat 4.1/JK2 and I'd like to get SSL access to some of my webapps. This is my workers2.properties: - [shm] file=/usr/local/httpd/logs/shm.file size=1048576 [channel.socket:localhost:8009] port=8009 host=127.0.0.1

ldap authenitcation

2002-11-25 Thread Charlene Mitchell
Hi, How do I authenticate against an LDAP directory using TomCat 4.1.2? In my web.xml I have a resource that requires form authentication as follows: login-config auth-methodFORM/auth-method realm-namejava:/jaas/LDAPLogin/realm-name !-- I tried with and without this --

Problems running VeriSign trial sertificate in Tomcat.

2002-11-25 Thread Morten Tollefsen
Problem with running Tomcat using VeriSign trial certificate. Can anyone please help me with this problem? Have searched for hours, but can't find any sollutions... I'm running: Windows 2000 JDK 1.3 JSSE 1.0.3 Tomcat 3.2.3 Have done: - Created self-signed certificate using keytool, OK. -

Protectind directory

2002-11-25 Thread Osvâneo A . Ferreira
Hi, I want protect a directory in my structure ( http://localhost/directory ) I use Apache+Tomcat and all test, it´s failed. Try .htaccess of apache, but nothing. Try permission org.apache.naming.JndiPermission jndi://localhost/examples/* , but nothing. How I do ? Osvâneo A. Ferreira

cannot use SSL with tomcat running as a service

2002-11-25 Thread Aurelio D'Amico
If run tomcat using the provided batch I can use SSL without any problem, if I run tomcat as a service instead, I receive the 404 errore page. Any Idea how to solve this problem? I'm using: windows NT SP6 java 4.1.1_01 tomcat 4.1.12-LE-jdk14 -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED]

reloadable

2002-11-25 Thread Raja Nasrallah
Hello, I set the attribute reloadable to true in a sample context tag(Context in the sever.xml) to monitor the the WEB-INF/classes. But it didn't affect. I make change in a sample class and the server don't load this class again. I am using jakarta-tomcat-4.0.6 in winow2000 server. Should

Re: tomcat as bundle

2002-11-25 Thread David Brown
[EMAIL PROTECTED] writes: Hi, Can any one tell me whether tomcat is avalable for download as a single tar.gz file?! and where is it available... I would like to install tomcat on Irix 6.5.16, anyone suggest if experimented already on this. thanks, Ranjit. - -- To unsubscribe, e-mail:

Re: Protectind directory

2002-11-25 Thread David Brown
Osvâneo A. Ferreira writes: Hi, I want protect a directory in my structure ( http://localhost/directory ) I use Apache+Tomcat and all test, it´s failed. Try .htaccess of apache, but nothing. Try permission org.apache.naming.JndiPermission jndi://localhost/examples/* , but nothing. How I do

Page Statistics for Tomcat?

2002-11-25 Thread JStanczak
Hi, I was wondering if someone could advise me on a good tool to show statistics for Tomcat. Something like webalizer. I'm going to look into webalizer, but I wanted to see if anyone had something better. Thank You, Justin A. Stanczak Web Manager Shake Learning Resource Center Vincennes

RE: Page Statistics for Tomcat?

2002-11-25 Thread Reynir Hübner
Hi, I really like awstats, it's in sourceforge... I recommend that one : http://sourceforge.net/projects/awstats/ Hope it helps [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: 25. nóvember 2002 13:41 To: [EMAIL PROTECTED] Subject:

Tomcat or JBoss?

2002-11-25 Thread JStanczak
I'm sure you get this question all the time, but this is not that type of question. I've been using Tomcat for a while, like a year, in a production environment. I think it's been doing fine so far. I've just got a new server to replace my current application server that's been running Tomcat. I

RE: Displaying servlets and its memory usage

2002-11-25 Thread Shapira, Yoav
Hi, OptimizeIt 5.0, the newest, claims to be able to display this sort of thing, if your servlets are each a different class, which is normally the case. But keep in mind all you'll see, with any of today's tools that I know of, is the memory usage of the servlet instance itself, not including

Re: IIS on W2k + tomcat 4.1.12

2002-11-25 Thread David Boyer
I didn't have too much trouble getting the 2.01 filter to work with Tomcat 4.1.12 and IIS 5. http://jakarta.apache.org/tomcat/tomcat-4.1-doc/jk2/jk2/configwebcom.html I don't think you need urimapworkers.properties. In addition to the ISAPI dll, all I'm using is workers2.properties and

Re: reloadable

2002-11-25 Thread Jon Eaves
Hi Raja, The default behaviour setting for the class reloading is a touch on the slow side, so include a Loader in the Context that looks like this one: Context path=/myapp docBase=myapp reloadable=true Loader className=org.apache.catalina.loader.WebappLoader

RE: JDK is not enough. SDK is needed

2002-11-25 Thread Shapira, Yoav
Howdy, Whoa there skippy ;) Venting is good sometimes... According to this page, it references j2se which is the JRE, the runtime. If you're using Tomcat binaries and not compiling any Java, you would think you only need the runtime libraries and not the whole SDK.

Re: jasper.error.emptybodycontent.nonempty, MySQL

2002-11-25 Thread David Brown
Eric Earnst writes: Hi all, I've read a lot of docs but over a long enough period of time that I forget most of what I read, the recent over-age newbie really applies here... I am putting together my first site and am getting the following error message from Tomcat (4.1.12-LE-jdk14):

Re: Tomcat or JBoss?

2002-11-25 Thread Kristján Bjarni Guðmundsson
I don't know much about JBoss but it was my understanding that it was an Enterprise JavaBeans Application Server and used Tomcat or something other as Servlet container. This is from the JBoss faq: What support exists in JBoss for JSP/Servlets ? The default download contains Jetty as an

RE: JavaMail problems on Tomcat4.0.6

2002-11-25 Thread Shapira, Yoav
Hi, So you didn't get any errors with 4.0.3 and now are getting them with 4.0.6? Would you be willing to try 4.0.6-LE and JDK 1.4.1? Minute 1: Default user is logged into mail server. See that messages are waiting. Attempt to invoke second sevlet. Exception is thrown:

RE: Tomcat or JBoss?

2002-11-25 Thread Reynir Hübner
If you need EJB container I recommend that you set up Jboss, if you don't need it, don't do it. You must realize the fact that Tomcat is a servlet/JSP container when Jboss is a J2EE container, usually bundled with either Jetty or tomcat for servlets/jsp support. I've been using tomcat for

RE: Sun JDK 1.4 production quality?

2002-11-25 Thread Shapira, Yoav
Hi, We actually have several webapps (on separate tomcat instances) with very different data models and corresponding GC behaviors. For example, we have one webapp which actually doesn't get that much user traffic, but needs to have a lot of information cached in memory for very quick retrieval

Help needed with Tomcat support for Double Byte Chars

2002-11-25 Thread John Z Yang
Hi, We are using Tomcat3.3.1 and Oracle on Linux. When we enter DoubleByte Chars (CJK, GB2312) in jsp form input, Tomcat turns the characters into 's. The only way we can get around this problem now is to set the IE browser to check the temporary files everytime. Does anyone knows how to

RE: Tomcat or JBoss?

2002-11-25 Thread Shapira, Yoav
Howdy, A couple of comments: 1. JBoss uses (or can use) Tomcat as its servlet/JSP container. We've used this setup in the past and like it. 2. If you need EJB support, or other J2EE features not offered by tomcat stand-alone, JBoss would be a good way to go. 3. While the initial thought behind

Re: Protectind directory

2002-11-25 Thread Osvâneo A . Ferreira
Hi David, Thank for help. I found a solution. Added in WEB-INF/web.xml a directive: security-constraint and tomcat-users.xml a user, password and role. Make a test and ok. See you. Osvâneo A. Ferreira - Original Message - From: David Brown [EMAIL PROTECTED] To: Tomcat Users List [EMAIL

Re: Tomcat NT Service Runtime.exec()

2002-11-25 Thread Jason Cheng
Hey everybody, Thanks for all of the replies. I was actually testing this code on the actual production web server (which I shouldn't have been doing in the first place) and when I found out that I was unable to execute any programs while logged on as myself I assumed it was a shortcoming of

RE: How to configure Apache2.0.43 and Tomcat4.1.12 on Win2k

2002-11-25 Thread Malcolm Green
There are two sets of configuration that need to be done to get this working. Apache Configuration The following needs to be added to the httpd.conf for Apache: (assuming the dll has been put into the modules directory) LoadModule jk2_module modules/mod_jk2.dll

RE: Tomcat or JBoss?

2002-11-25 Thread JStanczak
Yes, I say that. It even has a graphic with Tomcat in it. I assumed they used Tomcat, but I didn't know if there was more to it or if they just used it straight out of the box. I have no need for EJB support. Well I guess I'll just stick with Tomcat. Thanks for the info everyone!!! Thank You,

Problem with Tomcat 4.1.12 and Oracle Lite JDBC Driver

2002-11-25 Thread Adam Hudspith
Hello, I am trying to use the Oracle Lite JDBC driver from my webapp running in Tomcat 4.1.12. Whenever the code attempts to make a connection, there is JVM native code error detailed below. I have found this to occur every time for Tomcat 4.0.6 and 4.1.12 on NT 4 and Windows 2000. The

Re: reloadable

2002-11-25 Thread james
Hi, But I can't start Tomcat after I put the following to server.xml, and the error msg can't be logged. Context path=/test docBase=test reloadable=true Loader className=org.apache.catalina.loader.WebappLoader loaderClass=org.apache.catalina.loader.WebappClassLoader checkInterval=1 /

Re: apache and tomcat and a webapp

2002-11-25 Thread paul miller
We switched from JServ to tomcat about 2 months ago. for our production setup we use mod_webapp and set the appBase to be the apache web_root. Connector className=org.apache.catalina.connector.warp.WarpConnector port=8008 minProcessors=5 maxProcessors=75 enableLookups=false

Re: Applet from servlet

2002-11-25 Thread David Brown
Andreas Probst writes: Hi David, don't put the class files and jars, which you need for an applet, below WEB-INF. Tomcat won't serve these files to the user's browser. Just put these files in your webapp's directory. If you need the same classes also on the server, than you need to have two

Re: help with multilingual JSP sites pls. using a Filter to rewrite the URL ?

2002-11-25 Thread Triptpal Singh Lamba
One way you can do this is using property files. Prop_ file name _ language code.properties So for say abc.jsp , you have abc_en.properties and abc_fr.properties. At comple time the JSP calls a class you write at server which gives say % String languageCode = ObjectName.getLaguageCode(param 1

RE: Page Statistics for Tomcat?

2002-11-25 Thread JStanczak
What log format do you use for awstats? #4? Thank You, Justin A. Stanczak Web Manager Shake Learning Resource Center Vincennes University (812)888-5813 |-+ | | Reynir Hübner| | | reynir@hugsmidja| | |

RE: Discrepancies between servlets and JSP on tomcat in handling UTF-8?

2002-11-25 Thread Bodycombe, Andrew
Interesting. I have encountered a similiar problem. I have a servlet that connects to an XML application. The response from the application is read using a SAX reader, and I encountered an error if the response contained any non-ASCII characters (ü and ß in particular, as I am currently working

standard way to include XML resources

2002-11-25 Thread Thomas . Gaudin
Hi, Can someone point me to an example showing how to use a custom XML file as a ressource in Tomcat ? Is it possible to use the package org.apache.tomcat.util.xml for this purpose ? Thanks, Thomas -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail:

Re: Problems with Tomcat 4.1.12 and FORM based authentication

2002-11-25 Thread David Brown
Quenten Van Egeren writes: I'm having the following problem when using FORM based authentication with Tomcat 4.1.12 : When I bring up a new browser window, and go to a protected page (under /do/) I am redirected to the login.jsp as I should be. If I enter the correct username / password, I am

Problems with Apache 2.0.43 and Tomcat4 on Linux7.3

2002-11-25 Thread Mauro Brändle
Hello everybody, i'm new to these topics and i'm in deep trouble trying to integrate Apache 2.0.43 an Tomcat4. I have done as follows: - downloaded from the Apache site the mod_jk-2_0_42.so; - have added the following line in my server.xml file: Listener

RE: Page Statistics for Tomcat?

2002-11-25 Thread Reynir Hübner
I think tomcat is set to combined, you could also create your own pattern in tomcat, but the string being used in awstats is : LogFormat = %host %other %logname %time1 %methodurl %code %bytesd Hope it helps -reynir -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

Resource leak with a DBCP BasicDataSource?

2002-11-25 Thread Jerry Gaines
Hi, We're using a connection pool based on a DBCP 1.0 BasicDataSource, set up through our Tomcat 4.0 server.xml file. Every so often the retrieval of connections from the pool slows down to a snail's pace. We added some trace to the code which gets and releases connections to time how long

RE: reloadable [bayes][adr]

2002-11-25 Thread Raja Nasrallah
Hello, Thanks you, it works raja -Original Message- From: Jon Eaves [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 26, 2002 10:28 PM To: Tomcat Users List Subject: Re: reloadable [bayes][adr] Importance: Low Hi Raja, The default behaviour setting for the class reloading is a

Tomcat Connector JK2 + Apache + SSL

2002-11-25 Thread SAG - Jose Antonio Tarifa
Hello group. I'm not able to configure Apache + SSL with Tomcat to make available to servlets the SSL data, such like are returned by request.getRemoteUser() function (always return NULL). Apache runs correctly with HTTPS, but Tomcat no. Any idea?

Tomcat 4.1.12 Logs??

2002-11-25 Thread Prashanth Pushpagiri
Hi: I am running Tomcat 4.1.12 alongside IIS 5.0. I have no installation problems, but what I'd like to know is how to set up my logs. In all previous versions of Tomcat I observed Tomcat logging access details (complete HTTP requests made) in files like localhost_accesslog_***.txt, but in 4.1.x

Re: Tomcat Connector JK2 + Apache + SSL

2002-11-25 Thread David Brown
SAG - Jose Antonio Tarifa writes: Hello group. I'm not able to configure Apache + SSL with Tomcat to make available to servlets the SSL data, such like are returned by request.getRemoteUser() function (always return NULL). Apache runs correctly with HTTPS, but Tomcat no. Any idea?

RE: Over-aged Newbie needs some help

2002-11-25 Thread Price, Erik
-Original Message- From: Michele Emmi [mailto:[EMAIL PROTECTED]] Sent: Saturday, November 23, 2002 9:27 PM To: [EMAIL PROTECTED] Subject: Re: Over-aged Newbie needs some help But if he is an over-aged newbie he might prefer book over reading off a computer screengod

Re: help with multilingual JSP sites pls. using a Filter to rewrite the URL ?

2002-11-25 Thread Stephen Riek
Sorry, I'm not making myself clear here. My JSPs do exactly as you suggest so that I have one JSP serving up French and English pages, depending on the language that the user selected on my site. Here is the problem explained very simply. I have a sitemap as follows: /en -- /Products --

RE: Tomcat or JBoss?

2002-11-25 Thread Steve Lewis
We're currently running on WebLogic and are looking into retreating to Tomcat. Tyrex makes Tomcat pretty compelling. I think a lot of people are finding out that EJBs are overkill for web-based apps. Plus, it's cheaper! Steve __ Do you Yahoo!?

RE: help with multilingual JSP sites pls. using a Filter to rewrite the URL ?

2002-11-25 Thread Cox, Charlie
use request.gePathInfo() to get the path. Then parse the string and use RequestDispatcher.forward(/products/Toys/index.jsp?myparam=+langString). The forward() will not be subject to further filter processing. Charlie -Original Message- From: Stephen Riek [mailto:[EMAIL PROTECTED]]

I think I broke jsp compiler

2002-11-25 Thread Grinvald, Edward
Hello all, I'm trying to swap out a jre/jdk (yes, I know the diff) on the fly from tomcat 3.3a. All seems well with 1.3.1, but I'm getting problems with 1.4. It seems that the jsp simply don't get compiled (I get blank screen). Since my error page is also a jsp, where would I see jsp compilation

Multiple instanceq

2002-11-25 Thread Hari Venkatesan
Have anybody tried creating multiple tomcat instances. Is there any documentation that explains this step by step? Hari -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Mod_jk Problem

2002-11-25 Thread Dayo Oliyide
I'm currently having problems getting Apache to use load mod_jk, it keeps giving this error [emerg] Error while opening the workers. The workers.properties file exists and has the right attributes. I'm using Tomcat 3.3.1, Apache 1.3.9 and mod_jk-3.3-ap13-noeapi.so with Sun's jdk 1.4(build

Progress bar in html

2002-11-25 Thread Zsolt Koppany
Hi, does anybody know a code (JSP tag) that produces a progress bar in html format? Zsolt -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: Multiple instanceq

2002-11-25 Thread Rafael Angarita
In this URL I found instructions for tomcat 3.2.x: http://www.andreasklimke.de/webdev/misc.html#4.2.2 Hari Venkatesan wrote: Have anybody tried creating multiple tomcat instances. Is there any documentation that explains this step by step? Hari -- To unsubscribe, e-mail: mailto:[EMAIL

Re: reloadable [bayes][adr]

2002-11-25 Thread james
Hi, Raja: I am using Tomcat 4.1, it doesn't work for me. Did you change anything? Thanks for you help. James - Original Message - From: Raja Nasrallah [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Monday, November 25, 2002 9:32 AM Subject: RE: reloadable [bayes][adr]

Tomcat 3.2 and 4.1 coexist?

2002-11-25 Thread jimmy
Hello Folks, Is it possible to install Tomcat 3.2 and 4.1 on the same server? Are there any side effects? Which path needs to be followed to install 4.1 on a system that has 3.2 installed? The build list is rather long and complicated along with references and dependancies to many packages.

RE: help with multilingual JSP sites pls. using a Filter to rewrite the URL ?

2002-11-25 Thread Ron Smits
The browser can tell you the language that the system is setup for: Accept-Language: en-us, en;q=0.50 This is from my Mozilla setup All modern browsers will return an Accept Language string Another question related to this, Are you telling me that all your jsp pages have the actual content

Re: ldap authenitcation

2002-11-25 Thread Charlene Mitchell
Hi, No success so far :-( Surely I can't be the only person trying to do something so fundamental? How can I guarantee that I see even a failure in the log files? Seeing nothing at all seems very weird. Thanks Charlene --- Charlene Mitchell [EMAIL PROTECTED] wrote: Hi, How do I

Re: Multiple instanceq

2002-11-25 Thread Andreas Probst
Hi Hari, this has been discussed several times. Try to search the archive. Andreas On 25 Nov 2002 at 11:36, Hari Venkatesan wrote: Have anybody tried creating multiple tomcat instances. Is there any documentation that explains this step by step? Hari -- To unsubscribe, e-mail:

Re: Applet from servlet

2002-11-25 Thread Andreas Probst
Hello David! On 25 Nov 2002 at 9:25, David Brown wrote: Andreas Probst writes: Hi David, don't put the class files and jars, which you need for an applet, below WEB-INF. Tomcat won't serve these files to the user's browser. Just put these files in your webapp's directory. If

RE: I cannot make working SSL if I run tomcat as a service (NT)

2002-11-25 Thread Anthony Mutiso 2
Additionally you may want to make sure that the keystore file can be found by the user account that the tomcat service will run under. For my installation I do an explict: Factory className=org.apache.catalina.net.SSLServerSocketFactory clientAuth=false protocol=TLS

Re: Tomcat 3.2 and 4.1 coexist?

2002-11-25 Thread Carsten Ziegert
I performed your taskk without any trouble. 3.2 is running on port 8080, 4.1. on 8090. You just have to change the file server.xml to define the new port. Both versions are running in parallel. They've been installed in /usr/local/tomcat3 and /usr/local/tomcat4 Carsten Am Montag, 25.11.02, um

RE: help with multilingual JSP sites pls. using a Filter to rewri te the URL ?

2002-11-25 Thread Stephen Riek
Thanks for the reply Ron, I've heard of people using Accept-Language before but have my own doubts about that. For example, using Tomcat's example servlet to examine the request. ( http://127.0.0.1:8080/examples/servlet/RequestHeaderExample ) I find that accept-language is always en-us on my

How to specify path when executing CGI in Tomcat?

2002-11-25 Thread B W
Hi, I try to implement CGI in Tomcat(win2k,tomcat4.15). I follow the instruction to make a simple CGI work. However when I test a more complicated cgi file written using c++, I get a problem like xxx.exe -Unable to Locate DLL The dynamic link library orasql.dll cound not found in specified

RE: help with multilingual JSP sites pls. using a Filter to rewri te the URL ?

2002-11-25 Thread Stephen Riek
Thanks Charlie. Genius. Another simple solution saves the day. I presume you also mean that I should map all incoming requests to a servlet that then examines the PathInfo and issues the requestDispatcher. Magnificent solution. Thank you indeed. Stephen. Cox, Charlie [EMAIL PROTECTED] wrote:use

thanx for helping with TomCat query.. another problem..plz. help..

2002-11-25 Thread runu rathi
Hi, Thanks for helping with my previous query regarding Beans. I have another problem which I have posted earlier (dated 22nd Nov) on the users mailing list. plz. suggest about the possible cause. Thanks, Runu __ Do you Yahoo!? Yahoo! Mail Plus –

Problems running Tomcat from command line

2002-11-25 Thread Steve Russell
Hi; I just started a new job. The company is using MS Windows 2000 and Tomcat 3.2.4 ( not my choice - peace! ). I am able to start tomcat by going to C:\Tomcat\bin and double clicking startup.bat in explorer. However, I am not able to start tomcat from a command line. When I try it from

Re: Problems running Tomcat from command line

2002-11-25 Thread Christopher Mark Balz
You should set CLASSPATH as a Windows environment variable. I always make sure that the slashes in the CLASSPATH value should all point the same direction. - CB Steve Russell wrote: Hi; I just started a new job. The company is using MS Windows 2000 and Tomcat 3.2.4 ( not my choice -

Newbie Problems

2002-11-25 Thread Bob Tilley
Our shop is using Tomcat 4.0.5 and Apache 1.3.27 on FreeBSD with mixed results. Apache can be brought up and down with the normal 'apachectl start|stop'. Tomcat can be started normally via the startup.sh script but when the shutdown-sh script is run there is a burst of error messages from the

Re: Newbie Problems

2002-11-25 Thread Andoni
What do the error messages say? I.e.: can you paste them into a message (and maybe your server.xml also) then we could tell you what each one means. Andoni. - Original Message - From: Bob Tilley [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Sent: Monday, November 25, 2002

Re: TagLibs in Tomcat3.3.1

2002-11-25 Thread Craig R. McClanahan
On Sun, 24 Nov 2002, Bill Barker wrote: Date: Sun, 24 Nov 2002 23:31:27 -0800 From: Bill Barker [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: TagLibs in Tomcat3.3.1 Craig R. McClanahan [EMAIL PROTECTED] wrote in message [EMAIL

RE: help with multilingual JSP sites pls. using a Filter to rewri te the URL ?

2002-11-25 Thread Cox, Charlie
You can use a servlet or a filter. Filter mappings can overlap servlet mappings if you need them to. You can map all requests, or you can only map the specific paths for which you will use forward(). You probably want a filter if you are going to map all requests. glad to help :-) Charlie

RE: Newbie Problems

2002-11-25 Thread Bob Tilley
The FreeBSD box is on an intranet in our office that does not link to the outside world, but I'll try to communicate the errors: PARSE error at line 55, column 23 of ... server.xml org.xml.sax.SAXParseException: Attribute name IfModule must be followed by the '=' character. Then more

Why can't put weblogic.jar to classpath when using ant

2002-11-25 Thread james
Hi, I have a question, when I use ant to compile some files, the following error popped up, after tried a few times, I found if I delete weblogic.jar in the classpath, it is OK! Why is that? Thanks in advance James java.lang.VerifyError: (class: org/apache/tools/ant/taskdefs/optional/Native2Asc

RE: Discrepancies between servlets and JSP on tomcat in handlingUTF-8 ?

2002-11-25 Thread Craig R. McClanahan
On Mon, 25 Nov 2002, Bodycombe, Andrew wrote: Date: Mon, 25 Nov 2002 15:29:29 + From: Bodycombe, Andrew [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: '[EMAIL PROTECTED]' [EMAIL PROTECTED] Subject: RE: Discrepancies between servlets and JSP on tomcat in handling

newbie . catalina.out

2002-11-25 Thread mc
Hi Is it possible to redirect system.out elsewhere than in $CATALINA_HOME/logs/catalina.out ? For exemple, one file per context ?, per host ? thks

MBean server?

2002-11-25 Thread Shawn Wilson
I have the following packages installed on a RedHat 7.3 box: tomcat4-4.1.12-full.2jpp tomcat4-admin-webapps-4.1.12-full.2jpp Tomcat starts up fine and I can log into the admin app without problem. However, the moment I try to do anything in the admin app I get a HTTP Status 503 - Servlet

RE: Newbie Problems

2002-11-25 Thread p niemandt
Just going to take a stab at it, but it looks like you are trying to combine the apache configuration and the tomcat configuration into one file. basic xml dictates ... 1. Comments are the same as html comments, meaning !-- -- and not # 2. Attributes are followed by an = sign and quotes,

Re: newbie . catalina.out

2002-11-25 Thread Craig R. McClanahan
On Mon, 25 Nov 2002, mc wrote: Date: Mon, 25 Nov 2002 14:12:51 -0500 From: mc [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Subject: newbie . catalina.out Hi Is it possible to redirect system.out elsewhere than in

RE: IIS on W2k + tomcat 4.1.12

2002-11-25 Thread srinath narasimhan
The IISHowTo is not upto date . I referred to the instructions in InstallHowTo.xml that comes along with the zip file. That worked. Thanks. -Original Message- From: David Boyer [mailto:[EMAIL PROTECTED]] Sent: Monday, November 25, 2002 08:59 To: [EMAIL PROTECTED] Subject: Re: IIS on

RE: Tomcat or JBoss?

2002-11-25 Thread Price, Erik
-Original Message- From: Steve Lewis [mailto:[EMAIL PROTECTED]] Sent: Monday, November 25, 2002 11:33 AM To: Tomcat Users List Subject: RE: Tomcat or JBoss? We're currently running on WebLogic and are looking into retreating to Tomcat. Tyrex makes Tomcat pretty compelling.

RE: Tomcat or JBoss?

2002-11-25 Thread Shapira, Yoav
Hi, If they are overkill for webapps, what sorts of situations would benefit from them? flame-bait NEVER http://www.softwarereality.com/programming/ejb/index.jsp /flame-bait (Just kidding) ;) Yoav Shapira Millennium ChemInformatics -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For

Does the number of vhosts limit tomcat 4.1.12 scalability

2002-11-25 Thread Brandon Cruz
Does Tomcat 4.1.12 need more file handlers or available threads when starting than tomcat 3.2.4? When upgrading from tomcat 3.2.4 to tomcat 4.1.12, I get a java.lang.OutOfMemoryError: unable to create new native thread exception when trying to start. The configuration is the exact same as with

jspc error

2002-11-25 Thread colas
Hi I'm unable to use jspc I use tomcat 4.1.12 and jstl (jakarta-taglibs-standard-1.0.1) /usr/local/tomcat/bin#./jspc.sh -webapp ../webapp/myapp 2002-11-25 03:10:07 - ERROR-the file '/test.jsp' generated the following general exception: java.lang.NullPointerException error:null sbdy have a

Re: Problems running Tomcat from command line

2002-11-25 Thread Steve R Burrus
Ya, Christopher Balz is right on the money with his solid judgement that all of the various slashes in BOTH the path and the classpath env. variables should definitely point in just one direction only!!! Listen, can someone please tell me how I start to package up a WAR file and then in what

problems with tomcat as rmi client

2002-11-25 Thread Vishal Zinjuvadia
Hi, I am trying to use a Tomcat webapp as a RMI client. For the test purposes, my RMI server resides on the same machine. When I use a Tomcat webapp as a client, I consistently get a ClassCastException, while if I use a plain java class for the client, it works flawlessly. Following is my client

Re: Problems running Tomcat from command line

2002-11-25 Thread Steve Russell
At 12:41 PM 11/25/2002 -0800, you wrote: Ya, Christopher Balz is right on the money with his solid judgement that all of the various slashes in BOTH the path and the classpath env. variables should definitely point in just one direction only!!! This isn't an issue. As I wrote in my post I

Re: Problems running Tomcat from command line

2002-11-25 Thread Steve R. Burrus
Steve, are you typing (literally) startup.bat at the DOS command line to start Tomcat?? If so, you should just type in startup--one word--and that should quickly activate it to your satisfaction!! If it still doesn't, get back to me at the speed of light and I will go on with trying to help

Re: Problems running Tomcat from command line

2002-11-25 Thread Steve Russell
Yes I am literally typing startup.bat ( without quotes ) at the dos prompt in the appropiate directory. It works for other *.bat files. I also tried literally typing just startup ( without quotes ). No difference. Tomcat will still start by clicking on the icon for startup.bat in explorer,

Re: Problems running Tomcat from command line

2002-11-25 Thread Steve Russell
Hi; I'm reposting this, hoping that this version is more clear. -- I'm on Windows 2000 using Tomcat 3.2.4 ( not my choice ). I can start tomcat by double clicking the startup.bat file in C:\TOMCAT\bin. However, I can't start tomcat programmatically by typing startup.bat or startup (

Re: Why can't put weblogic.jar to classpath when using ant

2002-11-25 Thread David Brown
james writes: Hi, I have a question, when I use ant to compile some files, the following error popped up, after tried a few times, I found if I delete weblogic.jar in the classpath, it is OK! Why is that? Thanks in advance James java.lang.VerifyError: (class:

RE: Problems running Tomcat from command line

2002-11-25 Thread Julius Davies
Steve Russell, Perhaps this link will help: http://www.google.com/search?q=out+of+environment+space+tomcat Try to get that out of environment space error to go away, then we'll work on the absentee servlet.jar issue. Julius Davies, Programmer, CUCBC Email: [EMAIL PROTECTED], Ph:

tomcat sessions and webapp deployment

2002-11-25 Thread Baker, Derek
Hello, Tomcat 4.1.12, running with JBoss 3.0.4 on RedHat 8.0, seems to be holding onto sessions between deployments of a webapp. With the old version (3.something) the sessions would get killed when the app was redeployed. But now I have to shutdown tomcat, redeploy the app, and then restart

Re: Problems running Tomcat from command line

2002-11-25 Thread Christopher Mark Balz
As you probably know, the icon shows what command it actually issues in the properties dialogue (right-click on it) along with a directory to start in property. What are these poperties? Julius Davies wrote: Steve Russell, Perhaps this link will help:

Re: Setting up an environment variable in Tomcat 4.1

2002-11-25 Thread John Mattos
As a follow up question, how would I set this up if I'm using Tomcat as a Service? On the command line, I use... set CATALINA_OPTS=-Dindemand.env=C:\Tomcat4.0.6\conf\indemand_env_tomcat.properties Re: Setting up an environment variable in Tomcat 4.1 - From:

Re: Problems running Tomcat from command line

2002-11-25 Thread Manavendra Gupta
Hi, All your problems stem from the lack of environment space. If you run this on '95/98 you'd get the same error. While running tomcat, do you really need to have such a long path (as specified)? You could write a small batch file to keep the path to the bare minimum - this way you'd have more

Problem finding HttpJspBase

2002-11-25 Thread David Howard
I am new to Tomcat and am using Tomcat 4.1. I have installed it and everything seems to be working including the example programs. When I setup and run my application, I am getting the following error when ever I try and run my java application. I looked into why this might occur. Supposedly,

Re: Problems running Tomcat from command line

2002-11-25 Thread Steve Russell
Right clicking on the startup.bat icon, going to properties I get Target : C:\TOMCAT\bin\startup.bat Start In: C:\TOMCAT\bin Steve At 02:11 PM 11/25/2002 -0800, you wrote: As you probably know, the icon shows what command it actually issues in the properties dialogue (right-click on it)

RE: Problems running Tomcat from command line

2002-11-25 Thread Steve Russell
At 02:04 PM 11/25/2002 -0800, you wrote: Steve Russell, Perhaps this link will help: http://www.google.com/search?q=out+of+environment+space+tomcat Try to get that out of environment space error to go away, then we'll work on the absentee servlet.jar issue. Win 2000 does it differently.

  1   2   >