Re: A dead cat

2002-12-09 Thread Simon Kelly
Thanks for the reply. I have started redeploying manually, as you suggested. This seems to be working very well so far. A bit long winded but at least nothing has gone wrong. Just incase it is of any use and may shine some light on the original problem the details of the machine and set up

RE: Help with using mod_jk2

2002-12-09 Thread Robert L Sowders
Here's another, ftp://pokey.wr.usgs.gov/pub/rsowders/Apache2_Jk2_TC4.1.x_JSDK1.4.x.zip If you're not using windows then just pay attention to the configuration. rls Madere, Colin [EMAIL PROTECTED] 12/08/2002 07:58 PM Please respond to Tomcat Users List To: 'Tomcat Users

RE: JK and multiple virtual hosts on Apache (repost)

2002-12-09 Thread Robert L Sowders
This has come up quite often in the past. Search the archives for JkUriSet. When using apache/modssl make sure you use IP based virtual hosts. rls Madere, Colin [EMAIL PROTECTED] 12/08/2002 08:00 PM Please respond to Tomcat Users List To: 'Tomcat Users List' [EMAIL

Re: Name Based Virtual Host Problem

2002-12-09 Thread Robert L Sowders
You have told apache to answer www.yyy.com not yyy.com. When you ask for yyy.com and you get xxx.com then the default virtual is answering not your intended target. There are a few ways to solve this. Easiest would be to make a cname for www.yyy.com of yyy.com and have DNS correct the

Re: apache tomcat integration

2002-12-09 Thread Robert L Sowders
Apache is telling you that there is something wrong with the loading of the mod_jk.so, either the LoadModule line in the httpd.conf is wrong or the .so file is bogus in some way. run the apachectl configtest to check the syntax of the httpd.conf. You should get the same error. Now double

Re: apache tomcat integration

2002-12-09 Thread Vikram Dham
Also make sure ( by using httpd -l) that shared objects(mod_so) are enabled in your apache configuration. If you don't see mod_so it means loadmodule makes no sense to apache. HTH Vikram - Original Message - From: Robert L Sowders [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED]

RE: Tomcat shared libraries

2002-12-09 Thread Bodycombe, Andrew
If there are libraries you require both inside and outside tomcat, you could consider placing them in /jre/lib/ext. They are then available to all java applications using the particular JRE instance, including tomcat. For pre 1.4 versions, I found this useful for things like JSSE and regular

Re: Why run tomcat as root

2002-12-09 Thread Rasputin
* Nikola Milutinovic [EMAIL PROTECTED] [1238 08:38]: Just to clarify things a bit, before I ask for a new feature in Tomcat. Most security conciencious servers on UNIX (like BIND 9) use this sequence: 1. Bind to TCP ports 2. Load all dynamic modules, libraries (usually done by the

Re: tomcat + eclipse

2002-12-09 Thread Cédric Viaud
JSP debugging. They explain how to do ot on their site. I've never used it before, but will certainly have to soonly. I'll get you informed. Regards, Cédric - Original Message - From: Cristiano Silva [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Friday, December

Help with using mod_jk2 continued

2002-12-09 Thread Theodore A. Jencks
This seems to me a large problem with this particular project. There isn't enough clear documentation on setting up and installing mod_jk2. I posted a problem a while back that no one has responded to yet. Perhaps because no one in the know saw the post or perhaps I was just unclear. If the

Using filters to transform output

2002-12-09 Thread Andreas Hucks
Hi, I have an existing PHP application I want to port to Java servlets (I am an experienced programmer, but new to Java servlets). It is basically an admin interface for managing user accounts for community sites. To keep this as flexible and true to a MVC-pattern as possible, I figured I'd have

Tomcat Windows

2002-12-09 Thread Alberto Puerta
Hi. When start Tomcat in Windows, startup.bat is launched with a MS-DOS window but i'd like to run it as a process and without any visible window that somebody can close and stop the server. Is ther any solution? Using bootstrap.jar (i test it and nothing)? Thanks. -- To unsubscribe,

RE: Tomcat Windows

2002-12-09 Thread Roberts, Eric
Run Tomcat as a service - see the documentation for how to! -Original Message- From: Alberto Puerta [mailto:[EMAIL PROTECTED]] Sent: Montag, 09. Dezember 2002 11:38 To: Tomcat Usuarios Subject: Tomcat Windows Hi. When start Tomcat in Windows, startup.bat is launched with a MS-DOS

RequestDispatcher scenarios ( was RE: static url routing)

2002-12-09 Thread RXZ JLo
--- Craig R. McClanahan [EMAIL PROTECTED] wrote: To do a redirect filter, then, you'd examine the request URI to determine what kind of remapping is needed, and then do a RequestDispatcher.forward() call to the remapped resource name. After the forward returns (which means that the actual

How to configure datasources in tomcat 4.1.12 to obtain OracleResultSets

2002-12-09 Thread Thomas Achleitner
Hi! Since my application running under both OracleAS and Tomcat 4.1.12 should obtain connection pooling i tried to configure the application servers. Our application makes use of OracleResultSet. I configured OracleAS by editing the data-sources.xml file which works very well: data-source

URL contains encoded special chars when trying to enter Context Admin

2002-12-09 Thread Ronen Shenkar
Hello, I'm using tomcat 3.2 and I'm trying to use the admin tool. I'm getting the following exception after choosing Context Admin Any ideas? Thanks, ronen Error: 500 Location: /admin/contextAdmin/contextAdmin.jsp Internal Servlet Error: javax.servlet.ServletException: URL contains encoded

How to get a File for a certain folder

2002-12-09 Thread Patrick Kosiol
Hi, how can I get a File-Object for a certain Folder placed under my $CATALINA_HOME/webapps/ROOT/ - Folder. I want to traverse over the files that are placed there. Can anyone help me? thx Patrick -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail:

How to get a File for a certain folder

2002-12-09 Thread Patrick Kosiol
Patrick Kosiol wrote: Hi, how can I get a File-Object for a certain Folder placed under my $CATALINA_HOME/webapps/ROOT/ - Folder. I want to traverse over the files that are placed there. Can anyone help me? thx Patrick -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional

File structure in webapps for tomcat.

2002-12-09 Thread Simon Kelly
Hi, I am trying to get my servlet to write to and read from files within my webapp structure. However, when the servlet runs it seems that the working directory during its lifecycle is c:\xxx\tomcat 4.1. Is there any way, in web.xml, to force the servlet to run in it's own app directory

RE: File structure in webapps for tomcat.

2002-12-09 Thread Laxmikanth M.S.
use class URI in java.net.* package. no need to set in server.xml Regards Laxmikanth M S Off* : 91-80-6610330 extn 1256 Res* : 91-80-5267150 http://www.sonata-software.com Coming together is the beginning, staying together is progress and working together is Success What lies behind us

RE: How to configure datasources in tomcat 4.1.12 to obtain OracleResultSets

2002-12-09 Thread Roberts, Eric
Try parameternamefactory/namevalueorg.apache.commons.dbcp.BasicDataSourceFactory/value/parameter Hope this helps. -Original Message- From: Thomas Achleitner [mailto:[EMAIL PROTECTED]] Sent: Montag, 09. Dezember 2002 12:28 To: [EMAIL PROTECTED] Subject: How to configure datasources in

Re: make the app as ROOT.war

2002-12-09 Thread David Brown
Billy Ng writes: If my app needs to overwrite the ROOT.war, will it only kill the tomcat's examples? if not, what are the problems will I get? I notice the tomcat 4 exe installer installs the admin stuff, will it be a problem if I overwrite the ROOT? Thanks! Billy Ng Hello Billy, u don't

oracle+tomcat 4.1.x+dbcp = driverClassName is required!

2002-12-09 Thread Pedro Salazar
Greetings, I'm getting this exception when I try to lookup and cast a DataSource: [catalina.out] javax.naming.NamingException: DbcpDataSourceFactory: driverClassName is required org.apache.naming.factory.DbcpDataSourceFactory.getObjectInstance(DbcpDataSourceFactory.java:199)

Re: File structure in webapps for tomcat.

2002-12-09 Thread David Brown
Simon Kelly writes: Hi, I am trying to get my servlet to write to and read from files within my webapp structure. However, when the servlet runs it seems that the working directory during its lifecycle is c:\xxx\tomcat 4.1. Is there any way, in web.xml, to force the servlet to run in it's

RE: oracle+tomcat 4.1.x+dbcp = driverClassName is required!

2002-12-09 Thread Roberts, Eric
Pedro, You need javax.sql - that is the package containing DataSource. Your Resource type should be: type=javax.sql.DataSource You need these parameters in addition to url, username and password: parameter namedriverClassName/name valueoracle.jdbc.driver.OracleDriver/value

virtualhost-based root context?

2002-12-09 Thread Thomas Sandor
hi all, does anyone got an idea, how to set up the ROOT context for each of my virtualhost? like in apache DocumentRoot, so when invoking the URL, each / goes to a specified HTML directory. But in case of a dynamic app server I have only /xyz/ contexts, but when invoking a domain e.g.:

Re: File structure in webapps for tomcat.

2002-12-09 Thread Simon Kelly
Ah, Ok. What I have is a standard war file structure deployed in the c:\programme\apache group\tomcat 4.1\webapps directory, with the servlet held in WEB-INF/Classes and the web.xml set up as follows. web-app servlet servlet-name main /servlet-name

ClassLoader issue

2002-12-09 Thread Ola Berg
Could anyone describe how to load classes within a servlet using a URLClassLoader in Tomcat, or reference to a link somewhere? /O -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Connection Pooling Help

2002-12-09 Thread Kevin Passey
Hi, Can somebody point out my mistake for me - I'm starting to bang my head.. I am trying to get connection pooling working on my AS/400 using the Commons-DBCP. I have placed this JAR in TOMCAT_HOME/common/lib along with the JT400.JAR I have added the context entries to my server.xml file -

RE: Mod_jk is not compatible this version of apache

2002-12-09 Thread Turner, John
Where is there to look? Upgrade your Apache. There are several security fixes between .40 and .43, and mod_jk is version sensitive. John -Original Message- From: John B. Moore [mailto:[EMAIL PROTECTED]] Sent: Saturday, December 07, 2002 5:47 PM To: [EMAIL PROTECTED] Subject:

RE: URGENT HELP NEEDED!

2002-12-09 Thread Turner, John
This URL worked fine: http://www.xicom.biz/test3.jsp This URL didn't work at all: http://www.xicom.biz:9084/test3.jsp John -Original Message- From: Alex K. [mailto:[EMAIL PROTECTED]] Sent: Sunday, December 08, 2002 1:48 AM To: Tomcat Users List Subject: URGENT HELP NEEDED!

RE: Connection Pooling Help

2002-12-09 Thread Roberts, Eric
Kevin, Try: Context ctx = new InitialContext(); Context envCtx = (Context) ctx.lookup(java:/comp/env/); DataSource ds = (DataSource) envCtx.lookup(/jdbc/shiltonDB); -Original Message- From: Kevin Passey [mailto:[EMAIL PROTECTED]] Sent: Montag, 09. Dezember 2002

RE: URGENT HELP NEEDED PLEASE ADVISE

2002-12-09 Thread Turner, John
This URL works fine: http://www.xicom.biz/test3.jsp This URL does not: http://www.xicom.biz:9084/test3.jsp PS: you might want to rethink how you post messages...subject lines with URGENT in them probably get ignored more often then they get answered, and the subject of your posts should

I don´t understand the objective of this open list !

2002-12-09 Thread capa
In 3 opportunities i wrote to this stuped (sorry) list, and NEVER i found help. I hope that the people that participates of this list, don´t have damages about other people that don´t belong´s at your countries. Thank´s for NOTHING. -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For

RE: Connection Pooling Help

2002-12-09 Thread Kevin Passey
Eric, It's the same - DS == null. :-( Thanks anyway. Kevin -Original Message- From: Roberts, Eric [mailto:[EMAIL PROTECTED]] Sent: 09 December 2002 13:33 To: Tomcat Users List Subject: RE: Connection Pooling Help Kevin, Try: Context ctx = new InitialContext(); Context

RE: RequestDispatcher scenarios ( was RE: static url routing)

2002-12-09 Thread Cox, Charlie
RequestDispatcher works the same in a servlet or a filter. You can use forward() in a filter and not call doFilter() just like you call forward() in your servlet followed by a return; The diffference is that your request will get mapped to one servlet, but it can also be mapped to multiple

RE: ClassLoader issue

2002-12-09 Thread Cox, Charlie
have you looked at tomcat's classloader document? http://jakarta.apache.org/tomcat/tomcat-4.1-doc/class-loader-howto.html Charlie -Original Message- From: Ola Berg [mailto:[EMAIL PROTECTED]] Sent: Monday, December 09, 2002 8:15 AM To: Tomcat Users List Subject: ClassLoader issue

Re: ClassLoader issue

2002-12-09 Thread Ola Berg
have you looked at tomcat's classloader document? http://jakarta.apache.org/tomcat/tomcat-4.1-doc/class-loader-howto.html Charlie Yes, and it basically talks about the class loaders that Tomcat uses. But I want to be able to load classes from an jar file at an arbitrary URL specified at

RE: I don´t understand the objective of this open list !

2002-12-09 Thread Donie Kelly
You're defiantly blacklisted now :) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: 09 December 2002 13:40 To: [EMAIL PROTECTED] Subject: I don´t understand the objective of this open list ! In 3 opportunities i wrote to this stuped (sorry) list, and NEVER i

RE: Connection Pooling Help

2002-12-09 Thread Hari Venkatesan
Try changing the following parameter value in server.xml file valuejdbc:as400://10.0.0.1/value valuejdbc:as400://{name of your machine} /value instead of the ip address of the as400 Hari -Original Message- From: Kevin Passey [mailto:[EMAIL PROTECTED]] Sent: Monday, December 09, 2002

RE: apache tomcat integration

2002-12-09 Thread Turner, John
mode_jk.conf is incorrect. If you are using the auto-generation feature of Tomcat for generating Apache configuration, the file name would be called mod_jk.conf without the e. John -Original Message- From: Manish Sharma [mailto:[EMAIL PROTECTED]] Sent: Sunday, December 08, 2002

RE: I don´t understand the objective of this open list !

2002-12-09 Thread Laxmikanth M.S.
This is not the list for fighting.. if u have personal grievance please send it to intended person not to the list please avoid flooding mails like this hereafter.even I am sorry for sending to all but no othergo Regards Laxmikanth M S Off* : 91-80-6610330 extn 1256 Res* : 91-80-5267150

Custom Error 500 Page Is Not Displayed

2002-12-09 Thread ian.pilborough
Hi, I have an installation of Tomcat 4.0.6 running on Win 2k Advanced Server, JDK 1.3.1_01 using IIS 5.0 as web server. I have set-up custom error pages in web.xml for both 404 and 500 to display helpful messages relevant to the application I've built. Any 404s are nicely displayed using the

Re: File structure in webapps for tomcat.

2002-12-09 Thread Simon Kelly
I've just been looking at the URL package, but I can't see how that is going to get around the directory problem? I need the host to be transparent to the servlet and the files to be always found from the web app location. If I start putting urls in, I will start to tie myself to specific

RE: Problem with http OPTIONS using mod_jk for IIS

2002-12-09 Thread Joakim Ström
Thanks for the info Tim, I have managed to solve the problems I had in JK2, which sometimes corrupted data, so I will use that instead--I don't get the OPTIONS bug at all in JK2. Joakim Strom -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL

RE: Connection Pooling Help

2002-12-09 Thread Manavendra Gupta
I am surprised with the number of ppl facing this problem, including myself. And it makes me wonder how others on this list have been able to use DataSource/Connection Pooling with tomcat. It seems to be one feature where majority of ppl have been facing problems, yet there is not much of

RE: A dead cat

2002-12-09 Thread Shapira, Yoav
Hi, I would just suggest one quick test combination, but I don't have time to look into the issue in depth: - Get JDK 1.4.1 - Since you're using JDK 1.4.x, try running the -LE-jdk14 tomcat distribution, not the full distro. The tomcat download page details the differences between the two. Yoav

symlink within tomcat 4.1.12

2002-12-09 Thread Uwe Barthel
hi tomcat-user-list, Sorry, ugly english :-/ How I conf. Tomcat 4.1.12, that he follow sym. links ? I've this construct on my devel. workstation: project.cvs/myproj/lib/myLib.jar project.cvs/myproj/webapps (docBase of myproj) [some static stuff] ./WEB-INF/classes

RE: I don´t understand the objective of this open list !

2002-12-09 Thread Turner, John
Would you rather that people who can't help you waste your time sending you on wild goose chases that don't help at all? If you're not getting a response to your post, it's because nobody can help you. That's not our fault. Deal with it. John -Original Message- From: [EMAIL

RE: I don´t understand the objective of this open list !

2002-12-09 Thread capa
what curious that is the first time that someone here, can to answer to something. Yes, this list is not for fighting, but is for help at other persons...maybe you can help me to solve my easy technical problem and forget this, because i think that you don´t have damages, it´s right ?. Thank´s.

RE: symlink within tomcat 4.1.12

2002-12-09 Thread Turner, John
symlinks are disabled by default in 4.1.12. I think the workaround for it is broken in .12 and .13, and fixed in .14 and later, but I could be wrong (I don't use symlinks). Check the archives for allowLinking and check the release notes. John -Original Message- From: Uwe Barthel

RE: I don´t understand the objective of this open list !

2002-12-09 Thread Turner, John
Word of advice: making threats about damages to our country is the absolute worst way to go about asking for help. I doubt anyone will help you now, even if they could. You should think about learning some manners. You'll get a lot farther in life, a lot easier. John -Original

RE: I don´t understand the objective of this open list !

2002-12-09 Thread capa
Sorry, buy your words don´t give me fear. I only search technical help for something. i don´t have interest in to obtain enemies, I´d like friends that can help me. Only friends. I don´t need your threats. Thank´s. Mensaje citado por: Donie Kelly [EMAIL PROTECTED]: You're defiantly

Re: RE: I don´t understand the objective of thisopen list !

2002-12-09 Thread Felipe Schnack
Just do not post to the list anymore okay? I actually think your e-mail should be banned from the list. If nobody replied your question is because your english is not very easy to understand. You spoke something about people from other coutries, I'm not sure if I understood you, but I'm a

Re: RE: I don´t understand the objective of this open list !

2002-12-09 Thread David Kavanagh
Hmm, let me help... The note you were responding to was meant in good humor. Notice the smiley face at the end. That means that the comment was meant as a joke. I'm sorry if you aren't in that kind of mood right now. Why don't you try stating the problem(s) you are having, including

RE: I don´t understand the objective of this open list !

2002-12-09 Thread Donie Kelly
I reckon you should develop a sense of humour and take it in the way it was intended. I don't care what country you come from and neither does anybody else here. I've personally got major help from this list and find it an invaluable source of information. Your post below will get you nowhere.

Statically compile mod_jk into Apache.

2002-12-09 Thread Faine, Mark
Solaris 8 Tomcat 4.1.12 Apache 1.3.27 I want to statically compile mod_jk in Apache. For performance reasons we have an Apache installation that does not use any dynamically loaded modules. AFAIK it couldn't even if we wanted it to (without re-compiling) because we used -DDYNAMIC_MODULE_LIMIT=0

RE: I don´t understand the objective of this open list !

2002-12-09 Thread capa
Dear Jhon, Thank´s for your answer. Yes, maybe my questions is very dificult because: 1. Nobody has to installed tomcat 4.1.12 and 2. Nobody has to run the simple examples of tomcat 4.1.12 after the install. Jhon, this questions are very easy. Please, i give you excuses for this, but i don´t

RE: I don´t understand the objective of this open list !

2002-12-09 Thread Michael Weissenbacher
if you don't get answers i suggest you to take a look at this great text http://www.tuxedo.org/~esr/faqs/smart-questions.html it's How To Ask Questions The Smart Way by Eric Steven Raymond and i think it does apply here regards mw -Original Message- From: [EMAIL PROTECTED]

RE: I don´t understand the objective of this open list !

2002-12-09 Thread Faine, Mark
I only just subscribed to this list a few minutes ago and I will first say that if I can ever help you in any way I will. Having said that, you are fighting a loosing battle here by condemning the very people you are asking for help. There is an old saying, you get more flies with honey than

RE: I don´t understand the objective of this open list !

2002-12-09 Thread Turner, John
Please repost your problem. Be as specific as possible. Provide version numbers, and the text of any error messages you are seeing. Please understand that your opinion of minimal time is inaccurate. I'm not even on the Tomcat team, and I spend several hours a day, every day, reading and

Remotely restart Tomcat.

2002-12-09 Thread Michael A. Angelo
Is there a way to hit the admin or something so that I can restart Tomcat remotely? I am using Struts and the only way I know to get things going again after changing the struts-config.xml file is to restart Tomcat. Can't just restart my web app. Help!

RE: I don´t understand the objective of this open list !

2002-12-09 Thread Donie Kelly
I still don't understand the question. If it's so easy maybe it's because people are sick of answering simple questions where people don't read the how-to or installation guides properly. The archive for this list is at http://mikal.org/interests/java/tomcat/ I suggest you spend a little time

RE: I don´t understand the objective of this open list !

2002-12-09 Thread Shapira, Yoav
Hi, Maybe this will help. I'll describe my rationale when I saw your question. As you summarized them: 1. Nobody has to installed tomcat 4.1.12 and 2. Nobody has to run the simple examples of tomcat 4.1.12 after the install. Obviously, people (including myself) have done this before.

RE: Remotely restart Tomcat.

2002-12-09 Thread Aleksandr Shneyderman
Well you can also reload the context in which you have your struts application Use manager (not the admin) app for that, it accepts the url commands from your browser works for me. -Original Message- From: Michael A. Angelo [mailto:[EMAIL PROTECTED]] Sent: Monday, December 09, 2002

RE: Connection Pooling Help

2002-12-09 Thread Bodycombe, Andrew
I've not done it myself in tomcat, only in EJB containers, but as a starting point, I would suggest trying to get it to work by setting the connection pool as a global resource instead of a resource specific to your context. Then try and get your context-specific connection pool working. I too

Re: Custom Error 500 Page Is Not Displayed

2002-12-09 Thread Tomislav Miladinovic
Hi Ian, I am pretty new in this area so I can't help with your question but if you don't mind I have question for you. I recently installed Tomcat 4.1.12 and at startup I am getting error you are talking about. The page cannot be displayed HTTP 500 - Internal server error Internet Explorer

Re: Remotely restart Tomcat.

2002-12-09 Thread Michael A. Angelo
I believe I tried to just restart my context and that doesn't do it. Also, when you add new classes you also need to restart the entire tomcat server. Is this not true? It has been my experience so far. - Original Message - From: Aleksandr Shneyderman [EMAIL PROTECTED] To: Tomcat Users

RE: Connection Pooling Help

2002-12-09 Thread Roberto Bouza
The main problem if you are using apache or not, is the connector. I don't know if you are using apache but if you are using apache with tomcat DON'T USE the WebApp connector, is not maintained anymore and does not work correctly with apache 1.*, 2.*. USE mod_jk2 it works fine with the pool

Using IWS 4.1 with Tomcat 4.1.12 under Solaris 8

2002-12-09 Thread Benoit Derouet
Hi all, I was using IWS 4.1 with tomcat 3.2.x under Solaris 8 and this works fine. I want to upgrade to Tomcat 4.1.12, but I am unable to make it works. The connector of my 3.2.x installation do not handle AJP 1.3, so I compile the nsapi-connector.so. The compilation works fine, but

virtualhost based root context??

2002-12-09 Thread Thomas Sandor
hi all, does anyone got an idea, how to set up the ROOT context for each of my virtualhost? like in apache DocumentRoot, so when invoking the URL, each / goes to a specified HTML directory. But in case of a dynamic app server I have only /xyz/ contexts, but when invoking a domain e.g.:

question regarding error message

2002-12-09 Thread Horniks6
can u please tell me what javalangnoclassdeffounderror means? i can no longer get into yahoo games, and get this message. how do i fix? thanks in advance.

RE: I don´t understand the objective of this open list !

2002-12-09 Thread Turner, John
On a side note, I checked that URL and found that the archive stops after March 2002. Or did I miss something? John -Original Message- From: Donie Kelly [mailto:[EMAIL PROTECTED]] Sent: Monday, December 09, 2002 9:29 AM To: 'Tomcat Users List' Subject: RE: I don´t understand the

RE: question regarding error message

2002-12-09 Thread Reynir Hübner
Hi, It means that the class you are trying to load is not found in the classpath of your application. My guess is that you are on the wrong list (yahoo games ?) Hope it helps -reynir -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: 9. desember 2002 02:43

RE: Tomcat 4.1, DBCP and Oracle

2002-12-09 Thread Campano, Troy
Well I figured tomcat wasn't finding my driver when I didn't hard code it in setclasspath.sh because I didn't see it here: Key is java.class.path --

RE: virtualhost based root context??

2002-12-09 Thread Reynir Hübner
If I understand you correctly you want create a virtual host definition in server.xml It's done this way : Host name=www.something.com debug=0 Context path= docBase=C:\webappbase\ reloadable=true/ /Host Hope it helps -reynir -Original Message- From: Thomas Sandor

[OFFTOPIC] RE: question regarding error message

2002-12-09 Thread Turner, John
1 - this is a list for Tomcat user questions and support. 2 - that message typically means that a) the JVM on your machine is misconfigured or needs to be reinstalled, or b) the applet or the link to the applet is misconfigured on the server side (which you would have no control over). John

RE: Tomcat 4.1, DBCP and Oracle

2002-12-09 Thread Campano, Troy
I originally did it through the admin panel, but I made sure that I drilled down to the context of my webapp before I defined the data source. The resource tags in my server.xml are within my webapps context. thanks! ~ Troy Campano ~ -Original Message- From: Dan Tran [mailto:[EMAIL

RE: I don´t understand the objective of this open list !

2002-12-09 Thread Donie Kelly
http://www.mail-archive.com/tomcat-user@jakarta.apache.org/ Didn't realise the archive on the other site was out of date. :( Donie -Original Message- From: Turner, John [mailto:[EMAIL PROTECTED]] Sent: 09 December 2002 14:44 To: 'Tomcat Users List' Subject: RE: I don´t understand the

Re: problems executing the examples.

2002-12-09 Thread Andoni
See this error from one of the files you posted: [ERROR] Digester - -Parse Fatal Error at line 307 column 39: The string -- is not permitted within comments. org.xml.sax.SAXParseException: The string -- is not permitted within comments. Try doing a text search using grep (if in solaris) for the

Tomcat 4.1.12 exception reporting vs Resin exception reproting

2002-12-09 Thread Sukhwinder Singh
Hi, I am using tomcat 4.1.12 for learning and development purpose. And I am facing some problems regarding exception handling of tomcat. During development Tomcat doesn't provide detailed description of an exception. Instead of providing greater details about what caused the exception and where

RMI Class Annotation

2002-12-09 Thread David Esposito
Hello all, My problem is this: I am running Tomcat 4.1 as an embedded service in JBOSS 3.0.4 ... One of my servlets makes an RMI call to an RMI server running on a different box. The problem is that the classpath that JBOSS creates (and Tomcat inherits, i believe) is so large that it actually has

RE: problems executing the examples.

2002-12-09 Thread capa
Thank's my FRIEND. Mensaje citado por: Turner, John [EMAIL PROTECTED]: Looks like it would be in server.xml. John -Original Message- From: Andoni [mailto:[EMAIL PROTECTED]] Sent: Monday, December 09, 2002 10:06 AM To: Tomcat Users List Subject: Re: problems executing

RE: Tomcat 4.1, DBCP and Oracle

2002-12-09 Thread Campano, Troy
Nope...no luck. Same error: java.sql.SQLException: Cannot load JDBC driver class 'null' My server.xml looks like this now: Context path=/inventoryServer docBase=inventoryServer debug=5 reloadable=false crossContext=false Resource name=jdbc/inventoryPool

RE: Error 500 in Internet Explorer

2002-12-09 Thread ian.pilborough
Tomislav, Error 500 is a Server error, for example if your page contains some bad Java in a scriptlet then the page won't compile and the server will return to you a server error. If you are seeing this it could be that the server is unable to compile your page or some such server related

RE: Tomcat 4.1, DBCP and Oracle

2002-12-09 Thread Thomas Achleitner
Hi! I think paraemter driverClassName is missing. Try: parameternamedriverClassName/namevalueoracle.jdbc.OracleDriver/value/parameter hope this helps! thomas -Original Message- From: Campano, Troy [mailto:[EMAIL PROTECTED]] Sent: Monday, December 09, 2002 4:36 PM To: Balzarotti Paolo;

Can't read POST parameters in a Servlet

2002-12-09 Thread Ivan Venuti
Hi, I have this problem: from an HTML page I call a Servlet via a form like this: form name=richiesta method=post action=servletName input type=hidden name=in_file value=9177.doc ... input type=hidden name=port value=8787 /form In the Servlet I retrieve the parameters with

Advice please: Apache doesn't seem to resolve Tomcat symbolic links

2002-12-09 Thread Sarah Grimley
Inside my WEBAPP my subfolders 'ICONS' and 'TEMPLATES' are actually symbolic links to folders elsewhere. I have enabled them to be accessed by my WebApp, by placing this code inside the Tomcat server.xml: !-- Tomcat MY_APP Context -- Context path=/MY_APP docBase=MY_APP debug=0

Q: How do I install a jar file and reference it with a jsp page?

2002-12-09 Thread Brian O. Bozarth
Having trouble using this jar file which has code for an Equifax interface (credit check). I've been given a jar file with sample code. Where do I put in the tomcat directory and how do I reference it in a jsp page? Do I need to do anything on the server to configure? The package is

WebDav and Symbolic Links in 4.1.12!!!

2002-12-09 Thread Paolo Scaffardi
I upgraded Tomcat from old 4.0.6 to 4.1.12 and now i have problems with WebDav support:symbolic links on the webdav directory cannot be inspected/followed from any client (HTTP error: could not do a PROPFIND on file /webdav/mydir froms server myserver (404)). I work on Linux. I modified my

RE: Tomcat 4.1, DBCP and Oracle

2002-12-09 Thread Campano, Troy
Hello Thomas, I take it you mean oracle.jdbc.driver.OracleDriver. I added it, bounced the server, and still the same dreadful error: java.sql.SQLException: Cannot load JDBC driver class 'null' thank you for your help though! ~ t r o y ~ -Original Message- From: Thomas Achleitner

RE: Connection Pooling Help

2002-12-09 Thread Manavendra Gupta
Thanks for the reply. How do i make it a global resource? Just declare the resource in the global section? -Original Message- From: Bodycombe, Andrew [mailto:[EMAIL PROTECTED]] Sent: Monday, December 09, 2002 8:09 PM To: '[EMAIL PROTECTED]' Subject: RE: Connection Pooling Help I've

RE: oracle+tomcat 4.1.x+dbcp = driverClassName is required!

2002-12-09 Thread Pedro Salazar
Greetings, Eric, I'm getting a javax.naming.NameNotFoundException: Name jdbc is not bound in this Context exception! I have a resource link inside my context (no resource here or resource-ref in web.xml): resourceLink name=jdbc/ngincaredb global=jdbc/ngincaredb_global

RE: Connection Pooling Help

2002-12-09 Thread Manavendra Gupta
No, i am not using apache - its a standalone version of tomcat. To be honest, I find it rather awkward to be worried about the mod_jk versions, or whether i have a paricular module installed or using a particular connector, etc. With a tool being into such a wide use, I'm sure there are people

RE: How do I install a jar file and reference it with a jsp page?

2002-12-09 Thread Hamilton, Andrew
This may not be the only or best way to do this but I put my jar files in WEB-INF/lib directory where my webapp is. Then in the jsp at the top I put this line: %@ page import=java.util.*, esg.b3.* errorPage=error.jsp % and it works for me. Regards, Drew -Original Message- From: Brian

Apache1.3/mod_jk (unix) Tomcat 4 No processor available, rejectingthis connection

2002-12-09 Thread xchen
Hi Glenn, I had the same problem as you described for Apache1.3/mod_jk(linux) Tomcat 4 No processor available, rejecting this connection. Your message is very helpful and make me feel better about this environment. I am trying to reconfigure the environment, but not sure what I did is right.

RE: How do I install a jar file and reference it with a jsp page?

2002-12-09 Thread Reynir Hübner
I would tell you to put the jar file under WEB-INF/lib/ under your webapplication. This means the jar file along with all it's classes and what ever is in it, is in the classpath. Now, I don't kow what is inside the jar file (might be some javabeans as well as servlets). If I was you, I

RE: oracle+tomcat 4.1.x+dbcp = driverClassName is required!

2002-12-09 Thread Manavendra Gupta
Hi Pedro, Welcome to the club - there are a number of ppl facing the exact same problem, but are unable to find answer. Do let me know what you did if you find a solution. Manav. -Original Message- From: Pedro Salazar [mailto:[EMAIL PROTECTED]] Sent: Monday, December 09, 2002 9:12 PM

RE: How do I install a jar file and reference it with a jsp page?

2002-12-09 Thread Turner, John
http://jakarta.apache.org/tomcat/tomcat-4.1-doc/class-loader-howto.html If it's a class or group of classes, /WEB-INF/classes. If it's a JAR file, /WEB-INF/lib. John -Original Message- From: Brian O. Bozarth [mailto:[EMAIL PROTECTED]] Sent: Monday, December 09, 2002 10:50 AM To:

REPOST: SSL and setContentType() and secure and nonsecure items

2002-12-09 Thread Chris Parker
Greetings all, Apologies in advance for the blatant repost; I originally posted Friday afternoon, and I'm not sure if I got lost in the 'it's Friday - let's go home' shuffle or if nobody knows how/wants to help. --Original Message--- No doubt there's a simple way around

  1   2   3   4   >