where's workers2.properties

2002-12-03 Thread Marcel Stoer
Hi I've installed Tomcat 4.1.12. Supposedly, there should be a file called workers2.properties in the conf directory. It's missing. Where can I get it? Marcel -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: Servlet Timeouts

2002-12-03 Thread GEESOFT
Thanks for the feddback Bill. Much appreciated. I have been fighting this one all day. For interest sake, we get our websites to perform an invetory update once a week. We have servlet that did this. I wrote an automation tool that envoked the request once a week. Thanks again for the

Re: Tomcat optimization

2002-12-03 Thread Fred Bordage
In fact this is a large article about Linux, Apache, Tomcat, Zope, PHP, MySQL, etc. The only one i do not know enough to write the article is Tomcat. - Original Message - From: Bill Barker [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, December 03, 2002 9:02 AM Subject: Re:

Apache Tomcat mod_jk problem

2002-12-03 Thread R. C. Hill
Hi, I'm trying to use the mod_jk connector with Apache 2.0.43 (Win32) and Tomcat 4.1.10. When I add the Include c:/tomcat/conf/auto/mod_jk.conf line in the apache httpd.conf file, apache will not start. No sign of an error in the error.log file. I'm stumped...it should work?! Does anyone know

problem with mod_webapp

2002-12-03 Thread Leong Hong Wai
Hi all, Anyone has any idea about how to configure mod_webapp+apache in OS X 10.2 ? I've followed the sample given, but I always get the same error list below :- 2002-12-03 15:22:01 ContextConfig[/wai] Parse error in application web.xml org.xml.sax.SAXParseException: The content of

Re: problem with mod_webapp

2002-12-03 Thread Peng Tuck Kwok
Means the entry you added in the web.xml is wrong. It follows a certain order which is described in the error. (icon?,servlet-name,display-name?,description?,(servlet-class|jsp-file), init-param*,load-on-startup?,run-as?,security-role-ref*). Leong Hong Wai wrote: Hi all, Anyone has any idea

Re: How do you select to call doPost or doGet method of servlet?

2002-12-03 Thread m batsis
Bill Barker wrote: You don't. The call is determined by method on the original request. Yes, the client (a browser for example) is the one that decides what method of request to use. You respond to any of those types with the appropriate method (doGet etc). Note that you can implement one

RE: How do you select to call doPost or doGet method of servlet?

2002-12-03 Thread jon wingfield
although you can, in theory, wrap the original request in a javax.servlet.http.HttpServletRequestWrapper with getMethod() overridden to return the required value. (If you want to) -Original Message- From: news [mailto:[EMAIL PROTECTED]]On Behalf Of Bill Barker Sent: 03 December 2002

Re: Admin Webapp Problems (WAS: MBean server?)

2002-12-03 Thread Felipe Schnack
What is the MBean server? On Mon, 2002-12-02 at 21:01, Shawn Wilson wrote: Okay, this was just dumb on my part. When I installed Tomcat I installed the tomcat-noexamples and tomcat-admin RPM's. However, I noticed that installing Tomcat on a different machine (with examples), the first

Tomcat and security manager: unexpected java.security.AccessControlException on sun linux cobalt

2002-12-03 Thread J.P.Jarolim
Hi! I've been working on this since beginnig last week together with a friend and can't find a clue: My friend owns a sun cobalt with linux, apache and tomcat. The system seems to be ready to use for providers - there is a config utility to add new user sites with a lot of options (like: user

RE: SUCCESS w. Tomcat execution!

2002-12-03 Thread Romeo Dickason
Hi there, Steve, you will find loads of Servlet/JSP tutorials for beginners and more by just searching Google, try it, you'll be surprised at the quality material you'll find! :) Good luck! -Original Message- From: Jon Eaves [mailto:[EMAIL PROTECTED]] Sent: 03 December 2002 08:44 To:

query

2002-12-03 Thread faisal shabbir
Hi, I have just implemented ssl on tomcat4.0 by using jsse. Now on running my application i found that ssl is working on all of the pages. Problem is that i want ssl to work on the pages that contains sensitive information. How can i turn ON and OFF ssl on jsp pages. Thanks.

Servlet Timeouts

2002-12-03 Thread GEESOFT
Hi, I have an issue with my servlet timing out. I have just upgraded to Apache2 - ajp13 - Tomcat 4.1 configuration. I have a servlet that takes about 15 minutes to execute. Unfortunately it seems the servlet container or Apache is timing out after five minutes. The servlet stops processing

Re: Memory/Performance

2002-12-03 Thread Peter Lin
I haven't read all the posts, but if you're using connection pooling and your seeing large number of threads, I am guessing some page/class is not closing their connection and returning it back to the pool. If that is the case and you don't have a maximum number of connections set, you will

Re: Access denied... to /tmp !?

2002-12-03 Thread Simon Brooke
On Monday 02 Dec 2002 5:01 pm, Jeanfrancois Arcand wrote: That's the proper behaviour. By default, a web application is only able to read under the context under which it was deployed. If you want to grant access to the /tmp !*be carefull*!, add the following in your catalina.policy file:

Re: HELP!! Tomcat crashes on me!

2002-12-03 Thread Rasputin
* Steve R. Burrus [EMAIL PROTECTED] [1201 05:01]: Kwok, the so-called crash is like it just flat disappearing on me!!! I mean, it's like puff, like up in smoke so to speak!! Right, and it's given you an error that explains your server.xml is invalid. Since it seems to work out of the box for

CC/PP exchange

2002-12-03 Thread Jaikumar Ganesh
Hi Iam using Apache Tomcat/4.1.12. 1. Does it support CC/PP exchange protocol. 2. If yes, for a WSP (WAP) session with UAProf on how do i get the values for Profile and Profile diff headers aent by the client? i.e is there any application that will extract the values of these headers and

Tomcat service is not starting

2002-12-03 Thread Surendra Kumar
Hi all I have installed Tomcat 3.3.1 in Win2K prof. as a service. When we start this Service i am getting the following error in the event viewer and the service is not starting Could not create a FileOutputStream for System.out redirect. ' What does this mean and how can i overcome

Re: Apache Tomcat mod_jk problem

2002-12-03 Thread GEESOFT
Hi, I did have a similar setup so I hope my comments below help you. Regards, Glenn Drew --- Director GEESOFT PTY LTD - Original Message - From: R. C. Hill [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent:

RE: Help with auto-generating Apache config files for mod_jk

2002-12-03 Thread Turner, John
Well, my answer is use Ajp13Connector but that's because I prefer to go with what I know works instead of whatever someone has just released. The official line from the dev team is that CoyoteConnector on the Tomcat side is stable and ready for production use for both JK and JK2. So, it's up to

RE: where's workers2.properties

2002-12-03 Thread Turner, John
You create it. John -Original Message- From: Marcel Stoer [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 03, 2002 3:03 AM To: [EMAIL PROTECTED] Subject: where's workers2.properties Hi I've installed Tomcat 4.1.12. Supposedly, there should be a file called

Re: Tomcat and security manager: unexpected java.security.AccessControlException on sun linux cobalt

2002-12-03 Thread Rasputin
* J.P.Jarolim [EMAIL PROTECTED] [1217 11:17]: java.security.AccessControlException: access denied (java.io.FilePermission /home/.sites/143/site40/web/test.txt read) We looked into the tomcat docs how to setup the security manager correctly and looked into the tomcat.policy file in the

RE: Apache Tomcat mod_jk problem

2002-12-03 Thread Turner, John
Near as I can tell you are missing a Listener element for ApacheConfig in your server.xml. You need 2 Listeners, minimum. One of them at the Server level, which it looks like you have, and one of them at the Host level which it looks like you don't have. That's why your auto-generated

DataSource config problem :(

2002-12-03 Thread maninder s batth
Hi i spent 7 hours trying to figure out the problem, but no luck, anyone with leads pls help! i have following data source configuration in server.xml Resource name=jdbc/NPGnomonDB auth=Container type=javax.sql.DataSource / ResourceParams name=jdbc/NPGnomonDB

Re: Tomcat service is not starting

2002-12-03 Thread GEESOFT
YES YES, I had this problem too and it is an easy fix. All you have to do is create the two empty files: jvm.out and jvm.err in your TomcatHome\logs directory. That fixed it for me. Regards, Glenn Drew --- Director

Re: Filters don't affect request dispatcher forward

2002-12-03 Thread Jacob Kjome
At 11:50 PM 12/2/2002 -0800, you wrote: You can use a security constraint with a transport-guarantee element to require that certain accesses be performed only on SSL connections. Then, the container will do the necessary redirect for you. Urm, on my reading of the 2.3 spec, this would be a

RE: Not getting CSS with XML

2002-12-03 Thread Caton, Paul
Dave, Thanks for the reply, but no, I'm sure that's not the problem. Bitter experience has taught us to delete all the work/ files and recompile everything when testing changes, so I'm certain that the compiled JSP file is always up to date with the XML file. Paul. -Original Message-

RE: Access denied... to /tmp !?

2002-12-03 Thread Shapira, Yoav
Hi, However, if no value is specified in the web.xml, then currently the hard-coded default is /tmp; the thinking being this is it's usually a safe place to write stuff. How about, if no value is specified in web.xml, use javax.servlet.context.tempdir? That's always available as if it were

RE: Profiler to use with Tomcat?

2002-12-03 Thread Shapira, Yoav
Howdy, I've used and still use OptimizeIt extensively with Tomcat, and really like it. I've used JProbe, it's alright. Same goes for JMeter, although JMeter is improving rapidly (and is free of course ;). Don't underestimate a simple tool like wget, either (from GNU). I don't work for Borland,

Re: DataSource config problem :(

2002-12-03 Thread Jacob Kjome
parameternameUser/namevaluesa/value/parameter should be parameternameusername/namevaluesa/value/parameter Also, I'm not sure if the names are case sensitive. I suggest using All lower case just to be sure. Jake At 05:23 AM 12/3/2002 -0800, you wrote: Hi i spent 7 hours trying to figure

Re: DataSource config problem :(

2002-12-03 Thread maninder s batth
I could be wrong but isnt parameternameusername/namevaluesa/value/parameter specific to dbcp .BasicDataSourceFactory ? I am using SQLServerDataSource and according the docs they specify a param called User whose value should be a user name. Jacob Kjome wrote:

RE: Problem downloading binary files, please help.

2002-12-03 Thread Cox, Charlie
why do you need a servlet wrapper for binary files? if you need to do pre/post-processing, use a filter and let tomcat server the file. This way you don't have to try to implement the http spec in your servlet. You will run into problems when a download manager requests 10 pieces(via http

Re: DataSource config problem :(

2002-12-03 Thread Jacob Kjome
DBCP ultimately wraps your DataSource object. So, the config is specific to DBCP, not to your implementation of your DataSource. Someone please correct me if I am wrong. Jake At 06:32 AM 12/3/2002 -0800, you wrote: I could be wrong but isnt parameternameusername/namevaluesa/value/parameter

Please help me, problem in connecting to Oracle using think drivers in tomcat

2002-12-03 Thread Girijapathi
Dear Friends Using Tomcat, I am developing one application, during the process, I could able to connect to the oracle using JDBC-ODBC drivers, but I could not connect to the Oracle thin drivers I am Using : Windows NT Oracle 8.0.5

How to connect to a Data-File above the WEB-INF-Folder from a servlet????

2002-12-03 Thread Patrick Kosiol
Hi, How do I connect to a Data-File above the WEB-INF-Folder from a servlet For example my class is placed in $CATALINA_HOME/webapps/ROOT/WEB-INF/classes/myApp/server/servlet.class and my data-files are placed in $CATALINA_HOME/webapps/data/data.dat or so. Is this possible or does anybody

TC 4.1.12 auto re-deploy problem/confusion

2002-12-03 Thread Mark
I have an expanded-war app where it will initially auto-deploy (ie. expand the directories under /webapps), but not able to get it to hot redeploy after changes are made. By 'hot', I mean automatically have a new.war file re-expanded without restarting Tomcat. If I make changes to the app and

Re: DataSource config problem :(

2002-12-03 Thread maninder s batth
Jacob Kjome wrote: DBCP ultimately wraps your DataSource object. no it doesnt, if you specify a different factory class DBCP plays no role. So, the config is specific to DBCP, not to your implementation of your DataSource. Someone please correct me if I am wrong. yes, the examples

RE: Not getting CSS with XML

2002-12-03 Thread Cox, Charlie
are you setting the content type in the jsp? Charlie -Original Message- From: Caton, Paul [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 03, 2002 9:06 AM To: Tomcat Users List Subject: RE: Not getting CSS with XML Dave, Thanks for the reply, but no, I'm sure that's not

Re: TC 4.1.12 auto re-deploy problem/confusion

2002-12-03 Thread David Brown
Mark writes: I have an expanded-war app where it will initially auto-deploy (ie. expand the directories under /webapps), but not able to get it to hot redeploy after changes are made. By 'hot', I mean automatically have a new.war file re-expanded without restarting Tomcat. If I make changes

RE: How to connect to a Data-File above the WEB-INF-Folder from a servlet????

2002-12-03 Thread Shapira, Yoav
Howdy, How do I connect to a Data-File above the WEB-INF-Folder from a servlet For example my class is placed in $CATALINA_HOME/webapps/ROOT/WEB-INF/classes/myApp/server/servlet.class and my data-files are placed in $CATALINA_HOME/webapps/data/data.dat or so. Is this possible or does anybody

Re: TC 4.1.12 auto re-deploy problem/confusion

2002-12-03 Thread Mark
At 12/3/2002 09:09 AM, you wrote: Mark writes: I have an expanded-war app where it will initially auto-deploy (ie. expand the directories under /webapps), but not able to get it to hot redeploy after changes are made. By 'hot', I mean automatically have a new.war file re-expanded without

Re: How to connect to a Data-File above the WEB-INF-Folder from a servlet????

2002-12-03 Thread David Brown
Patrick Kosiol writes: Hi, How do I connect to a Data-File above the WEB-INF-Folder from a servlet For example my class is placed in $CATALINA_HOME/webapps/ROOT/WEB-INF/classes/myApp/server/servlet.class and my data-files are placed in $CATALINA_HOME/webapps/data/data.dat or so. Is

cloudscape datasource

2002-12-03 Thread work
hi, I am trying very hard to get a clouscape datasource up and running using tomcat 4.0.6. Ive put the jars into common lib have added the server.xml context elements. have the web.xml res elements but get Namingexception cannot create resource instance.

Re: How to connect to a Data-File above the WEB-INF-Folder from aservlet????

2002-12-03 Thread Patrick Kosiol
Howdy ;-) thx 4 ur help, this it is what I wanted. But there is also another Question. I have a .exe-file that I want to start out of the servlet. Of course with some paramteters and one of my data-files as one of the parameters. Is that possible? And how do I do that? If that works and the

VIRTUAL HOST CONFIGURATION

2002-12-03 Thread karthikeyan.balasubramanian
Hi All, I have sucessfully integarated Apache with Tomcat using WarpConnecter. But how do i go about from here to implement lots of Virtual Host for our clients. I need to setup atleast 5 virtual hosts. I couldnt actually figure a way to host 5 real domains with JSP and Servlet support.

RE: How to connect to a Data-File above the WEB-INF-Folder from a servlet????

2002-12-03 Thread Shapira, Yoav
Howdy, You want to be careful when running executables from your servlet (and from a web server in general). You're opening up security holes there. From your servlet, assuming the file is at /home/myname/myprogram: String execPath = /home/myname/myprogram; Runtime runtime =

Re: Access denied... to /tmp !?

2002-12-03 Thread Jeanfrancois Arcand
Simon Brooke wrote: On Monday 02 Dec 2002 5:01 pm, Jeanfrancois Arcand wrote: That's the proper behaviour. By default, a web application is only able to read under the context under which it was deployed. If you want to grant access to the /tmp !*be carefull*!, add the following in your

RE: VIRTUAL HOST CONFIGURATION

2002-12-03 Thread Turner, John
http://www.codesta.com/knowledge/technical/tomcat_warp_apache/index.jsp FYI - WARP is deprecated, or at least no longer actively developed. If you want to be guaranteed support in the future, you might want to consider moving to JK/JK2. John -Original Message- From:

Re: help! authentication problem

2002-12-03 Thread Nathan Pitts
thanks a bunch, craigyou got me pointed in the right direction! working fine, now --nathan On Monday, December 2, 2002, at 07:39 PM, Craig R. McClanahan wrote: See below. On Mon, 2 Dec 2002, Nathan Pitts wrote: Date: Mon, 2 Dec 2002 19:08:42 -0600 From: Nathan Pitts [EMAIL

Re: Tomcat and security manager: unexpected java.security.AccessControlExceptionon sun linux cobalt

2002-12-03 Thread Jeanfrancois Arcand
J.P.Jarolim wrote: Hi! I've been working on this since beginnig last week together with a friend and can't find a clue: My friend owns a sun cobalt with linux, apache and tomcat. The system seems to be ready to use for providers - there is a config utility to add new user sites with a lot of

RE: Not getting CSS with XML

2002-12-03 Thread Caton, Paul
Charlie, A colleague suggested I try adding this to the JSP: response.setContentType(text/html;charset=UTF-8) but it made no difference. Is there another way you know of I could try? Paul. -Original Message- From: Cox, Charlie [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December

Re: Filters don't affect request dispatcher forward

2002-12-03 Thread Alexander Wallace
Hey I love that! Thanks, let me try it! Now, with this solution, I figure i can't fore stuff that doesn't match the to be secured pattern to go over http and not https if it is requested, right? I still can live with that, but it would sure be cool.. Thanks! On Mon, 2002-12-02 at 19:31, Craig

Re: query

2002-12-03 Thread Martin Jacobson
faisal shabbir wrote: Hi, I have just implemented ssl on tomcat4.0 by using jsse. Now on running my application i found that ssl is working on all of the pages. Problem is that i want ssl to work on the pages that contains sensitive information. How can i turn ON and OFF ssl on jsp pages.

Re: Tomcat and security manager: unexpected java.security.AccessControlException on sun linux cobalt

2002-12-03 Thread J.P.Jarolim
Hi - thanks for the answer; I found the following line in the description for java.io.FilePermission indicating that i could have a serious problem in understanding english (nosarkasm): A pathname that ends with /- indicates (recursively) all files and subdirectories contained in that directory.

Tomcat and IIS

2002-12-03 Thread Schultz, Cecilia
Hi, I installed Tomcat 3.3.1, win2K server with IIS I followed the IIS HowTo and did all the additional IIS setup to have IIS redirect jsp/servlets to tomcat (started tomcat with jkconf option, generated the isapi_redirect.properties files in conf/auto, created Jakarta virtual directory on

Re: Filters don't affect request dispatcher forward

2002-12-03 Thread Craig R. McClanahan
On Mon, 2 Dec 2002, Bill Barker wrote: Date: Mon, 2 Dec 2002 23:50:08 -0800 From: Bill Barker [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: Filters don't affect request dispatcher forward Craig R. McClanahan [EMAIL PROTECTED] wrote in

RE: Not getting CSS with XML

2002-12-03 Thread Cox, Charlie
that should work. Make sure you have it *before* your include and before any whitespace in your jsp. Also look in the logs for errors. You may want to use AccessLogValve(to log requests) to see if the css is requested with the wrong path. Charlie -Original Message- From: Caton, Paul

Re: Filters don't affect request dispatcher forward

2002-12-03 Thread Craig R. McClanahan
On 3 Dec 2002, Alexander Wallace wrote: Date: 03 Dec 2002 10:21:19 -0600 From: Alexander Wallace [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Subject: Re: Filters don't affect request dispatcher forward Hey I love that! Thanks,

Need help with Tomcat!

2002-12-03 Thread Roland Dong
I managed to install Tomcat 4.1.12 on Mac os X 1.2 However I was unable to run my applications. I am testing the tomcat by add test directory under webapps with only one file, index.html, in it. I restarted the server and typin http://localhost:8090/test/index.html. It gives me an error: The

Re: TC 4.1.12 auto re-deploy problem/confusion

2002-12-03 Thread Craig R. McClanahan
On Tue, 3 Dec 2002, Mark wrote: Date: Tue, 03 Dec 2002 10:07:29 -0500 From: Mark [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: TC 4.1.12 auto re-deploy problem/confusion I have an expanded-war app where it will initially auto-deploy (ie.

Re: SUCCESS w. Tomcat execution!

2002-12-03 Thread micael
Congratulations, even from me. ///;-). Would you like a small list of books that will give you the inside scoop on this sort of technology? I think that it would serve the list well if you asked for the same under a Subject of Tomcat Book List, and people could make their recommendations

RE: Need help with Tomcat!

2002-12-03 Thread Fenlason, Josh
Try changing the docBase attribute to the full path to the test directory. -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: Need help with Tomcat!

2002-12-03 Thread Roland Dong
Thanks for your reply. However, it follows the example included in Tomcat Context path=/examples docBase=examples debug=0 reloadable=true crossContext=true And examples works but test doesn't! Why? Roland On 12/3/02 11:27 AM, Fenlason, Josh [EMAIL PROTECTED] wrote: Try

Re: Filters don't affect request dispatcher forward

2002-12-03 Thread Alexander Wallace
Ok, thankyou for the advice, I will do that then. What i was trying to do is actually what you are telling me i shouldn't. Again, thanks! On Tue, 2002-12-03 at 11:20, Craig R. McClanahan wrote: On 3 Dec 2002, Alexander Wallace wrote: Date: 03 Dec 2002 10:21:19 -0600 From: Alexander

RE: Need help with Tomcat!

2002-12-03 Thread Turner, John
Because there is more to adding a directory to Tomcat than just throwing a Context tag into server.xml. Did you create a web.xml file? Is your DefaultContext configured correctly? Do you have the right directory structure under /test (it should mirror the directory structure under /examples)?

Newbie: Infos about Windows NT Authentication

2002-12-03 Thread Jasper Dammann
Hello, where can I get basic-information about Windows NT Authentication and Tomcat. I read the Tomcat Documentation JNDI-Resource HOW-TO and REALM HOW-TO, but I didn’t understand for example how to configure the Windows NT Server to run Tomcat with Windows NT Authentication … thanks for help,

Need help

2002-12-03 Thread Avinash Prasad
Hi, I configured the tomcat with IIS (in process) on windows 2000 professional. Its working fine for JSP , I want to execute ASP page from the same directory where I putted my jsp file. Like /webapps/jsp/hello.jsp-This is working fine /webapps/jsp/hello.asp---its not working.

RE: Problem downloading binary files, please help.

2002-12-03 Thread Vy Ho
Thank you very much for helping. I was speculating on something like this, but didn't know if it's true. If you have time, please point me to some where easy to find info on how to do this (since you did the same thing before). Again, thank you very much for the help. On Tue, 3 Dec 2002,

The page cannot be displayed, HTTP 500 - Internal server error

2002-12-03 Thread Tomislav Miladinovic
Hi, After so many tries to get Tomcat 4.1.12 works (get home page) I am still experiencing error (after browsing http://localhost:8080). I try change Catalina port to 80 (server.xml) but no difference. The page cannot be displayed, HTTP 500 - Internal server error I didn't have this error

Concurrent Connection Limits

2002-12-03 Thread Johnson, Garrett
Ladies and Gentlemen: I need to know: Are there limits, ASIDE from those imposed by Apache HTTPD / Tomcat, imposed by WINDOWS 2000 on the number of concurrent connections it can accept? I'm running my application on Win2K Pro, but am afraid once it goes live I'll have to upgrade to Win2K

javax.servlet.ServletException when starting

2002-12-03 Thread David Mehringer
I have a (valid) jar file in the WEB-INF/lib directory of one of my web apps. Threre are other jar files in the same directory which seem to load fine on startup, but when loading this one, there is some error which I don't understand (snippets from trace below from the log). I'm running

Help needed for threading

2002-12-03 Thread bm
Hi Here is config : Am using the ajp13 connector between apache(2.34) and tomcat 4.0.3 under window 2000 server. Am using the scope as 'application' in all JSP files. Here is settings : I have minimum processor as 20 in server.xml and the maximum processor as 100 for ajp13 Here is issue :

Tomcat 4.1.12 startup speed

2002-12-03 Thread Brandon Cruz
I have recently upgraded about 200 virtual hosts from tomcat 3.2.4 to tomcat 4.1.12 and noticed that it takes much longer to start the server. Tomcat 4.1.12 seems to print out quite a bit of information about each virtual host and context that it is creating, which may be causing the long startup

Struts-Console-3.1 causes windows to reboot ???

2002-12-03 Thread Ron Day
Anyone else see this strange behavior. downloaded Struts-console-3.1 to c:\ double click console.bat or run command line... windows shuts down, then reboots. Win 2000 sp3 jdk 1.4.1 anyone, or is my machine cookoo -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional

Re: VIRTUAL HOST CONFIGURATION

2002-12-03 Thread David Brown
karthikeyan.balasubramanian writes: Hi All, I have sucessfully integarated Apache with Tomcat using WarpConnecter. But how do i go about from here to implement lots of Virtual Host for our clients. I need to setup atleast 5 virtual hosts. I couldnt actually figure a way to host 5 real

Tomcat and JMX

2002-12-03 Thread Jay Wright
I was trying to find information regarding tomcat and jmx, but was unable to do so. I'm particularly interested in knowing if tomcat is jmx 1.0 or 1.1 compliant. And if it differs from tomcat 4.x to 5.x. I'd appreciate either a link or a faq or (preferably) someone with firsthand knowledge...

Re: TC 4.1.12 auto re-deploy...revisited

2002-12-03 Thread Mark
At 12/3/2002 09:09 AM, you wrote: Mark writes: I have an expanded-war app where it will initially auto-deploy (ie. expand the directories under /webapps), but not able to get it to hot redeploy after changes are made. By 'hot', I mean automatically have a new.war file re-expanded without

Re: Newbie: Infos about Windows NT Authentication

2002-12-03 Thread David Brown
Jasper Dammann writes: Hello, where can I get basic-information about Windows NT Authentication and Tomcat. I read the Tomcat Documentation JNDI-Resource HOW-TO and REALM HOW-TO, but I didn’t understand for example how to configure the Windows NT Server to run Tomcat with Windows NT

Re: SUCCESS w. Tomcat execution!

2002-12-03 Thread David Brown
micael writes: Congratulations, even from me. ///;-). Would you like a small list of books that will give you the inside scoop on this sort of technology? I think that it would serve the list well if you asked for the same under a Subject of Tomcat Book List, and people could make their

RE: Not getting CSS with XML

2002-12-03 Thread Caton, Paul
Okay, I put the Java expression first so that now the JSP file looks like this: %= response.setContentType(text/html;charset=UTF-8) %%@ include file=mary.xml % After I recompiled and tried to access the page I got this error message: org.apache.jasper.JasperException: Unable to compile

Reading wanted.

2002-12-03 Thread Triptpal Singh Lamba
Hi all. Can someone direct me to the following two things please... 1. The most exhaustive online, free resource for Tomcat documentation 2. Whats the best newsletter to keep in touch with the J2EE World updates. Like we have IEEE software for SE, Dr Dobb blah blah, but whats a good one for

RE: Reading wanted.

2002-12-03 Thread Reynir Hübner
For general java/j2ee : Try www.javalobby.org and the www.theserverside.com For tomcat: guess that has to be http://jakarta.apache.org/tomcat -Original Message- From: Triptpal Singh Lamba [mailto:[EMAIL PROTECTED]] Sent: 3. desember 2002 18:56 To: Tomcat Users List Subject:

RE: Reading wanted.

2002-12-03 Thread Turner, John
#1: jakarta.apache.org/tomcat John -Original Message- From: Triptpal Singh Lamba [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 03, 2002 1:56 PM To: Tomcat Users List Subject: Reading wanted. Hi all. Can someone direct me to the following two things please... 1. The

Re: TC 4.1.12 auto re-deploy...revisited

2002-12-03 Thread David Brown
Mark writes: At 12/3/2002 09:09 AM, you wrote: Mark writes: I have an expanded-war app where it will initially auto-deploy (ie. expand the directories under /webapps), but not able to get it to hot redeploy after changes are made. By 'hot', I mean automatically have a new.war file

RE: Not getting CSS with XML

2002-12-03 Thread Julius Davies
Paul Caton, The error message your getting is because of the fact that response.setContentType() doesn't return anything. You used %= % in your jsp, which needs an Object or a primitive inbewteen those brackets. Your jsp is then going to call toString() on that Object (or just blithely

Re: TC 4.1.12 auto re-deploy...revisited

2002-12-03 Thread Mark
At 12/3/2002 01:19 PM, you wrote: Mark writes: At 12/3/2002 09:09 AM, you wrote: Mark writes: I have an expanded-war app where it will initially auto-deploy (ie. expand the directories under /webapps), but not able to get it to hot redeploy after changes are made. By 'hot', I mean

RE: Not getting CSS with XML

2002-12-03 Thread Caton, Paul
Ah ha! Thanks, Julius - that got rid of the server error. But I'm still back with the lack of CSS. The logs aren't helping either, except negatively. That is, when I access mary2.jsp (which simply includes mary.html)the localhost_access_log shows: Get /acsam/mary2.jsp HTTP 1.1 200 358 Get

RE: Not getting CSS with XML

2002-12-03 Thread Kris Schneider
Actually, I'm confused as to why you'd ever use a scriptlet for setting the content type in a JSP. In addition, the default content type is already text/html, so setting it explicitly seems redundant. The output's actually supposed to be XML, right? How 'bout something like: %@ page

Re: javax.servlet.ServletException when starting

2002-12-03 Thread David Brown
David Mehringer writes: I have a (valid) jar file in the WEB-INF/lib directory of one of my web apps. Threre are other jar files in the same directory which seem to load fine on startup, but when loading this one, there is some error which I don't understand (snippets from trace below from

Tomcat Server Password Expiration

2002-12-03 Thread Zakeri, Moe
Hi, I have a question I thought you are the right person to ask. I would want to redirect users or do something else so when a password expires (from Oracle database), the login.jsp page will ask users to enter their new password after 120 days their old password has been set up. Do I have to

Re: Newbie: Infos about Windows NT Authentication

2002-12-03 Thread micael
You might be better off looking at the NT documentation than Tomcat documentation. The way environmental variables, etc. are set on NT is an NT matter. At 06:39 PM 12/3/2002 +0100, you wrote: Hello, where can I get basic-information about Windows NT Authentication and Tomcat. I read the Tomcat

RE: Not getting CSS with XML

2002-12-03 Thread Caton, Paul
That did the trick! Thanks, Kris. Paul. -Original Message- From: Kris Schneider [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 03, 2002 3:04 PM To: Tomcat Users List Subject: RE: Not getting CSS with XML ... How 'bout something like: %@ page contentType=text/xml % %@ include

RE: Not getting CSS with XML

2002-12-03 Thread Kris Schneider
Sweet. Glad it worked. Quoting Caton, Paul [EMAIL PROTECTED]: That did the trick! Thanks, Kris. Paul. -Original Message- From: Kris Schneider [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 03, 2002 3:04 PM To: Tomcat Users List Subject: RE: Not getting CSS with XML

[ANN] Best and Worst Development Practices -- Training in NYC and DC

2002-12-03 Thread John Menke
Increase Your Struts Productivity - Attend the BaseBeans Public Struts Training We have a 11 hour public class in DC and in NYC in January. If you sign up soon the price is $145. The regular price is $275 and it goes up as we approach the date due to capacity planning. This class is taught

Re: javax.servlet.ServletException when starting

2002-12-03 Thread David Mehringer
On Tue, 3 Dec 2002, David Brown wrote: David Mehringer writes: Hello Dave, i have special interest when people named Dave running linux boxes and tc ask questions so here goes: how do ur jars get to the locatin under: WEB-INF? how u r generating ur jars? what do the jars do? r the jars

Solved: Tomcat and security manager: unexpected java.security.AccessControlException on sun linux cobalt

2002-12-03 Thread your mom
Hi all. We solved the problem with tomcat ignoring all grants for individual user sites. It was a pure RTFM. For every user site, a unique context is created on startup (as seen in tomcat.log on debug level) There is a outcommented line in the server.xml which has to be activated: !--

accents

2002-12-03 Thread Felipe Schnack
Anyone here is a Brazilian user of tomcat and pgsql? I would like to chat off-list with someone about dealing with problems about our portuguese and this combination of applications... -- Felipe Schnack Analista de Sistemas [EMAIL PROTECTED] Cel.: (51)91287530 Linux Counter #281893

Get the request path from a filter ..

2002-12-03 Thread Eriam Schaffter
Hi all .. How can I get the request uri from a servlet filter .. ? Thanks for any answear .. Eriam Schaffter -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: Get the request path from a filter ..

2002-12-03 Thread Reynir Hübner
How about request.getRequestURI() ? It should return you a string with the uri.. Hope it helps -reynir -Original Message- From: Eriam Schaffter [mailto:[EMAIL PROTECTED]] Sent: 3. desember 2002 22:13 To: [EMAIL PROTECTED] Subject: Get the request path from a filter ..

Re: Get the request path from a filter ..

2002-12-03 Thread Craig R. McClanahan
On Tue, 3 Dec 2002, Eriam Schaffter wrote: Date: Tue, 03 Dec 2002 22:12:59 + From: Eriam Schaffter [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Get the request path from a filter .. Hi all .. How can I get the request uri from a

  1   2   >