the tomcat versions

2002-11-18 Thread Dionisio Ruiz de Zarate
why in the tomcat page there are some versions (stables)? why the development groups are development two version (4.0.x, 4.1.x)? why? which is the diference? thanks -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

HTTP GET Response size discrepancy

2002-11-18 Thread RXZ JLo
My servlet reads an xml file from the disk and just outputs it as the response. When I access the URL from IE, I get the xml file finely. But when I access the xml from my VB program, the xml seems to be somewhat different(I dont know in what way its different but MS XML parser refuses to parse

Re: New Tomcat Linux User - Unable to compile class for JSP

2002-11-18 Thread Pedro Salazar
Hi, It's the tools.jar that exists in j2sdk's lib directory that is missing on your container's lib path. Some containers have it their lib directory structure, some don't. My tomcat standalone version have it, but the tomcat that comes in JBOSS's package (a LE version) don't have it. So if you

Difference between the coyote and Catalina connector ?

2002-11-18 Thread Joseph Stephen Vaithara
Hi All, Can someone enlighten me on the difference between the coyote connector and the Catalina httpconnector. Which one of the two is the recommended connector with Tomcat 4.0.4. I am using tomcat primarily for file uploads and downloads. Regards, Joseph -- To unsubscribe, e-mail:

Programmatic login

2002-11-18 Thread Juergen Weber
Hi, thanks to all who answered to my question. The valve solution looks good, but as we develop with tomcat and run on weblogic we cannot use nonportable solutions. So, if marketing insists on their idea we have to dump container managed security. Probably we will use a struts based security.

Question about webapp connector

2002-11-18 Thread Jean-Luc BEAUDET
Hi all, Runnin' Tomcat 4.0.2 and Apache 1.3.26 on SOLARIS 8 in Production. I'd like to get /webapp-info/ secured by login/password - even BASIC - when asked by http://my.sever.com/webapp-info/ Any help welcome. Jean-Luc B :O) -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For

tomcat redirects to default page

2002-11-18 Thread neal
Tomcat autmatically redirects from the root url to the defualt page of the URL: www.myurl.com - www.myurl.com/index.jsp Does anyone know how to prevent it from doing this? I would rather that it show the default page but not redirect the url to www.myurl.com/index.jsp. Is this possible?

Tomcat 4.0.6 and Java versions

2002-11-18 Thread Kristján Bjarni Guðmundsson
What are the requirements for the Java versions for Tomcat 4.0.6? I am trying to use JDK-1.2.2_014, but trying to start Tomcat I always get: Bootstrap: Class loader creation threw exception java.lang.IllegalMonitorStateException: current thread not owner -- To unsubscribe, e-mail:

Re: tomcat redirects to default page

2002-11-18 Thread Carsten Ziegert
Neal, I suppose index.jsp *is* the default page. Welcome pages are defined in conf/web.xml: welcome-file-list welcome-fileindex.html/welcome-file welcome-fileindex.htm/welcome-file welcome-fileindex.jsp/welcome-file /welcome-file-list But

RE: tomcat redirects to default page

2002-11-18 Thread neal
Yeah, I mean the default page is what you specify it to be right? Ok, here's what I mean: I was using BCentral.com and they have a tool for scoring your website ranking on the major search engines. I typed in my URL (www.myurl.com) and bCentral came back with a message to the effect of Your

Tomcat as NT Service

2002-11-18 Thread louis
Hello, When I install tomcat 4.1.12 in my w2k system, I didn't choose to install as NT service. And now I want to do it, is it possible to do it without reinstall tomcat again? Please let me know how to do it...thanks. Regards, Louis -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED]

SOAP: Unable to resolve target object

2002-11-18 Thread Philippe Burger
I tried to install a SOAP service on an Apache server with Tomcat 4.1 webapp module. (It's a simple Hello 'name' SOAP tutorial example) I deployed the SOAP service with no problem. The SOAP client is well compiled. But when I run the client, i have the following message: Unable to resolve target

jspc NullPointerException

2002-11-18 Thread Holger Veltrup
Hey, I try to compile a JSP with the jspc-Script. I download the binary-distritbution fo tomcat-1.4.12. My Java-Version is 1.4.0 If i execute the following command a NullPointerException is thrown. ./jspc.sh -uriroot ../webapps/examples ../webapps/examples/jsp/colors/colrs.jsp 2002-11-18

Re: jspc NullPointerException

2002-11-18 Thread Andoni
Try to isolate the error further, error:null seems like it is coming from a: catch(Exception e){ System.out.println(error: + e.getMessage()); } in your code. Null pointer exception is very often a call to a method on an object which has not been instantiated. Andoni. - Original Message

Tomcat + Search Engines

2002-11-18 Thread neal
I have been looking into search engine submission. It sounds as though most engines to not like urls that simply redirect to another url. That said, I am getting the impression that Tomcat's default redirection to the default page when you type in the base url (e.g. www.myurl.com -

jspc NullPointerException

2002-11-18 Thread Holger Veltrup
Hey, I try to compile a JSP with the jspc-Script. I download the binary-distritbution tomcat-1.4.12. My Java-Version is 1.4.0 If I execute the following command a NullPointerException is thrown. ./jspc.sh -uriroot ../webapps/examples ../webapps/examples/jsp/colors/colrs.jsp 2002-11-18 10:13:30

RE: Re: why Tomcat 4.0.4 creates new instance of servlet, when applet make first request to servlet?

2002-11-18 Thread Cox, Charlie
set load-on-startup in web.xml for your servlet. This will call init() when tomcat is started as opposed to the first call. Are your applet and browser calling the same url? If you defined multiple servlet definitions for your servlet in web.xml you will get separate instances. Also if you have

Re: Re: jspc NullPointerException

2002-11-18 Thread Holger Veltrup
I use the tomcat example of downloaded distribution. There is not my owen code intergrated. The same call (./jspc.sh -uriroot ../webapps/examples ../webapps/examples/jsp/colors/colrs.jsp) works with tomcat 4.0.3 Try to isolate the error further, error:null seems like it is coming from a:

RE: ln -s synbolic links not followed on unix/linux

2002-11-18 Thread Turner, John
It's the default behavior for security reasons. Check the release notes, check the archives. There is a flag that can be set in server.xml, but you will need to upgrade to versions higher than .12 for it to work correctly. We don't use symlinks, so I can't explain further. I believe the flag

RE: ROOT/subdir softlinked to another directory fails

2002-11-18 Thread Turner, John
Symbolic links are disabled by default in recent versions of Tomcat. Check the release notes for more info, search the archives for allowLinking. John -Original Message- From: Hanasaki JiJi [mailto:[EMAIL PROTECTED]] Sent: Sunday, November 17, 2002 6:27 PM To: [EMAIL PROTECTED]

Re: ln -s synbolic links not followed on unix/linux

2002-11-18 Thread Jan Agermose
did not work for me, using a .14 version, running linux and jdk 1.4.1 - got no replys - must be my magiccomputer ;-) Jan - Original Message - From: Turner, John [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Sent: Monday, November 18, 2002 2:07 PM Subject: RE: ln -s

RE: ln -s synbolic links not followed on unix/linux

2002-11-18 Thread Turner, John
As far as I know it works in versions greater than .12. If it doesn't, post to the list and someone can help, or look in bugzilla to see if anyone else is having the problem. We don't use anything higher than .12, and we don't use symlinks, so as much as I would like to help further, I can't.

RE: Tomcat as NT Service

2002-11-18 Thread Anderson, M. Paul
I reinstalled tomcat to have mine run as a service...on a similar note, can anyone tell me how to get tomcat and apache to load as services in the appropriate order? When I startup it appears that apache gets loaded first and the association is not setup with tomcat properly. When I start them

RE: Can all vhosts share one Webapp?

2002-11-18 Thread Cox, Charlie
-Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] Sent: Sunday, November 17, 2002 8:42 PM To: Tomcat Users List Subject: Re: Can all vhosts share one Webapp? On Sun, 17 Nov 2002, Brandon Cruz wrote: Date: Sun, 17 Nov 2002 16:46:44 -0600 From:

Tomcat, Apache, JK, Internal Server Errors (intermittent)

2002-11-18 Thread NickL
Config: Tomcat 4.0.6, Apache 1.3.27, JK1.2 After a while (~100 requests) you get mostly Internal Server Errors when accessing the service through apache. However, accessing Tomcat directly on 8080 works fine still. Does anyone have any ideas why this is and how to fix it? It's as if tomcat

RE: Unexpected results for minProcessors setting

2002-11-18 Thread Shapira, Yoav
Hi, I'm pretty sure, looking at the code, that the threads are pre-created and initialized, but not run. So they won't show up until needed, that is, until requests come in. Did you try this with a full load test and the threads still didn't show? Also, how are you checking? Yoav Shapira

RE: Tomcat Xerces Issue.

2002-11-18 Thread Cox, Charlie
sorry, missed this a while ago... please see the bug report that addresses this problem: http://nagoya.apache.org/bugzilla/show_bug.cgi?id=6374 Charlie -Original Message- From: Jeff Tulley [mailto:[EMAIL PROTECTED]] Sent: Monday, November 04, 2002 2:35 PM To: [EMAIL PROTECTED]

JDBCRealm Problems

2002-11-18 Thread angelo . improta
Hi, I'm using Tomcat 4.0.5. It seems work well, but I've a problem with JDBCRealm. When I close browser, is impossible shut down the Tomcat Service. Probably a Db connection is still active. Someone knows this problem nd the relative solution? I'm using ODBC:JDBC brige driver on a Oracle Db. I've

RE: Possible to subclass a web application?

2002-11-18 Thread Cox, Charlie
Put all yout common code in one context, make a context available for it in each virtual host. Then create a context-specific directory(named the same in all hosts) that contains header.jsp,etc that are specific to each host. Charlie -Original Message- From: Turoff, Steve

welcome-file-list

2002-11-18 Thread Anderson, M. Paul
Is it possible to have a servlet be the welcome-file parameter in a welcome-file-list? If so, how do I invoke the servlet? -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: JDBCRealm Problems

2002-11-18 Thread Michael Nicholson
why aren't you using the normal oracle driver? something from classes12.jar (or classes12.zip, whatever it starts as)? I've heard nothing but the ODBC:JDBC bridge driver should not be used in a production environment. I guess I'd try using some other driver. - Original Message - From:

Re: welcome-file-list

2002-11-18 Thread Andoni
Yes, it is, in as much as any .jsp file IS a servlet. Why don't you describe more about what you want to achieve. For example what URL do you want your users to type in and what do you want served first? Andoni. - Original Message - From: Anderson, M. Paul [EMAIL PROTECTED] To: 'Tomcat

ant deployTask BUG

2002-11-18 Thread Alexander ten Bruggencate
Hi list, I think I've found a bug in the ant deployTask. The bug is that not the entire contents of a war file is unpacked by the manager app. Used tools: RH8, Tomcat 4.1.12, java 1.4.1 and ant 1.5. a (more) lengthy description of my problem: structure of my war file (step.war): META-INF/

RE: Tomcat 4.0.6 and Java versions

2002-11-18 Thread Reynir Hübner
Hæ, Did you by any chance download the LE version ? http://jakarta.apache.org/builds/jakarta-tomcat-4.0/release/v4.0.6/bin/ Try the standard version, but not LE. The standard version req. : Standard: This is a full binary distrbution of Tomcat 4, which includes all optional libraries and an

RE: proper use of servlet contexts

2002-11-18 Thread Cox, Charlie
you have to identify your context somehow so that it knows which context you want, so you need a real path to specify it. Within each context I create a virtual directory(servlet mapping) so that I can specify any filename in the directory and it will always go to my servlet. This works great for

ServletInputStream buffering

2002-11-18 Thread James Carnegie
I am writing a little client in java that talks to tomcat 4.0 via HTTP. However, when I send a byte to my clients OutputStream (and flush), the byte is not received by my servlets InputStream (request.getInputStream in doPost) until all bytes up to the content-length are received. Is there any

Internal Server Configuration Error

2002-11-18 Thread Marc
Hi everybody!!! I'm trying to configure tomcat with apache. When I try to load the mod_jk.so library in apache, I get this error message: Syntax error on line 437 of /usr/local/etc/httpd/conf/httpd.conf: Cannot load /usr/home/parcbit/usr/local/etc/httpd/modules/mod_jk.so into server: Shared

Internal Server Configuration Error

2002-11-18 Thread Marc
Hi everybody!!! I'm trying to configure tomcat with apache. When I try to load the mod_jk.so library in apache, I get this error message: Syntax error on line 437 of /usr/local/etc/httpd/conf/httpd.conf: Cannot load /usr/home/parcbit/usr/local/etc/httpd/modules/mod_jk.so into server: Shared

RE: welcome-file-list

2002-11-18 Thread Shapira, Yoav
Hi, Searching the archives would've yielded many answers to this question. Not directly. You can have a JSP, which is compiled into a servlet. Or you can have a JSP or plain HTML page which redirect to a servlet. The next servlet specification, v2.4, which is getting very close to final, will

SSI JSP

2002-11-18 Thread Derek Mc Connon
Hi, I am new to JSP and Tomcat Setup I need to setup Tomcat to allow jsp include server-side-include pages. Does anyone have and examples or any good documentation on configuring and using SSI with JSP. Thanks in advance Derek -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For

RE: welcome-file-list

2002-11-18 Thread Anderson, M. Paul
ok...essentially I have a url of the form www.whatever.org/MyServlet/ServletMappedName where the servlet is titled MyServlet and is mapped to ServletMappedName in the web.xml file so that I can avoid the servlet/package.MyServlet portion of the url. I'd prefer to just call

Tomcat + Apache listening to multiple ports

2002-11-18 Thread Gunther Mittermayer
Hi all!! I´m working with Tomcat and Apache linked by mod_jk.dll, and although I've read many messages saying it is possible to have Tomcat listening to multiple ports, I haven´t found a HOWTO anywhere. Can anyone help me out on this one? I´m still pretty new to Tomcat, so if you could go

RE: welcome-file-list

2002-11-18 Thread Shapira, Yoav
Hi, That's not a bad initial design. A better alternative would be to have an Authentication filter (mapped to /*), a monitor filter (mapped to /*), and your servlet mapped to /ServletMappedName. That'll make things a lot simpler, decoupled, robust, etc. Yoav Shapira Millennium ChemInformatics

RE: Serving PDF files on Apache2 + Tomcat4.1

2002-11-18 Thread Hugo Villeneuve
I can share the experience I had with IE5, Tomcat 4.1 and serving dynamic PDF. IE 5 have a problem with the Cache-Control parameter in the HTTP 1.1 header. With Tomcat 4.1, if I just send the pdf on the OutputStream every think is working fine. What is your problem exactly? -Original

Re: Internal Server Configuration Error

2002-11-18 Thread Roland Carlsson
Have you tried to look at line 437 in your http-conf. Verified that the path to libc.so.6 is correct? One not that qualified guess could be that it is something wrong with that. Check where the libc.so.6 is in your filesystem and then verify with line 437 in the http-conf. If you doesn't find the

JSP pages giving out source code

2002-11-18 Thread Uma Maheswar
Hello, Some of the links in my website to .jsp pages are giving out the source code and some or not. What is the reason? e.g http://www.javagalaxy.com/sss.jsp gives out source code (not true link) where as http://www.javagalaxy.com:8080/ss/s.jsp will work. How to correct this? Any

Fresh 4.1.12 install throws exceptions when compiling JSP pages

2002-11-18 Thread chrislott
Hi, I have been using Tomcat 3.3 for some time and this morning attempted to get 4.1.12. I am using JDK 1.4. I downloaded the LE binary distribution of Tomcat 4.1.12 and followed the instructions in RUNNING.txt closely. The server starts with no errors in any log file, and will serve

Oracle thin client DataSource configuration with tomcat

2002-11-18 Thread Manavendra Gupta
Hi, I'm sure the gurus have discussed this issue a number of times and probably found a solution too, but after reading all the documents i found, i came to a naught. Its the same problem: server.xml and web.xml seem to have been configured properly, yet when i try to obtain a datasource i get

RE: welcome-file-list

2002-11-18 Thread Anderson, M. Paul
ok...bear with my skill level here...you're suggesting the Authentication filter and monitor filter would be separate servlets? Then when the user typed the www.whatever.org/, which one would be invoked? What would occur if the user typed www.whatever.org/MyServlet directly before the

RE: Tomcat 4.0.6 and Java versions

2002-11-18 Thread Kristján Bjarni Guðmundsson
No this is the full version of v4.0.6 I can run it using JDK version: v1.4.1_01 v1.3.1_03 I simply change the JAVA_HOME variable but v1.2.2_014 gives the error, and unfortunately I have to use the 1.2 version. Has anybody actually verified that Tomcat can run on 1.2 of Java? Reynir Hübner

Who can help ???

2002-11-18 Thread Jean-Luc BEAUDET
Hi all, Runnin' Tomcat 4.0.2 and Apache 1.3.26 on SOLARIS 8 in Production. I'd like to get /webapp-info/ secured by login/password - even BASIC - when asked by http://my.sever.com/webapp-info/ Any help welcome. Jean-Luc B :O) -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For

RE: JSP pages giving out source code

2002-11-18 Thread Turner, John
Apache doesn't understand that *.jsp requests need to be sent to Tomcat. You need a connector (WARP, JK, or JK2), and if you already have one, it's misconfigured. John -Original Message- From: Uma Maheswar [mailto:[EMAIL PROTECTED]] Sent: Monday, November 18, 2002 10:17 AM To:

RE: [CONFIG] Apache2.0.40 + Tomcat4.1.12 + mod_jk - STILL HAVING PROBLEMS

2002-11-18 Thread Jaimes Blunt
I installed Apache2.0.43 and am still getting a startup error. The exact error I am getting is as follows: apachectl: line 87: 26252 Segmentation Fault $HTTPD -t My httpd.conf file is including the $JAKART_HOME/conf/auto/mod_jk.conf file that is automatically generated by Tomcat. Here is the

Tomcat 4 StandAlone Web Server, Static HTML and Images

2002-11-18 Thread p niemandt
Hi Group: Please help ... I'm very new to servlets, though I do have a lot of programming experience. My problem is that I can't seem to get images displayed properly using Tomcat as the web server. I have a very simple layout ... webapps /servlet index.shtml /WEB-INF-

Re: Who can help ???

2002-11-18 Thread Manavendra Gupta
Did you try using the '.htaccess' from apache? Manav. - Original Message - From: Jean-Luc BEAUDET [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED]; tomcat-user [EMAIL PROTECTED] Sent: Monday, November 18, 2002 8:52 PM Subject: Who can help ??? Hi all, Runnin' Tomcat

Re: welcome-file-list

2002-11-18 Thread Andoni
Have you tried to create a host element in Tomcat around your context and thereby remove the need for anything after the www.whatever.org? Andoni. PS: Are you using Apache Virtual Hosting? - Original Message - From: Anderson, M. Paul [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL

RE: JSP pages giving out source code

2002-11-18 Thread Reynir Hübner
Hi, In my oppinion the problem lies in url-mapping for the http engine in your setup. From the urls you sent in, it looks like as if you're on one hand accessing a webpage directly within tomcat (through port 8080), and the other through a HTTP server such as IIS or apache. When you're

RE: Tomcat 4.0.6 and Java versions

2002-11-18 Thread Jason Koeninger
I have 4.0.6 running on a Solaris Intel 1.2 JDK. The HTTP connector seems to work fine with 1.2, but the ajp13 connector was throwing exceptions on a socket method (setKeepAlive I think). Switching the instance using ajp13 to JDK 1.3.1 fixed that problem, but I still have one instance using the

RE: [CONFIG] Apache2.0.40 + Tomcat4.1.12 + mod_jk - STILL HAVING PROBLEMS

2002-11-18 Thread Turner, John
Doesn't look Tomcat related. Remove the line from httpd.conf that says Include /my/mod_jk.conf/file. Then try /your/path/to/apache/bin/apachectl configtest. If you still get the same error, then there is something wrong with your Apache. You can also try starting Tomcat, letting it generate

RE: welcome-file-list

2002-11-18 Thread Anderson, M. Paul
ok...you're getting beyond my limited knowledge already...I'm am not certain as to what you mean by creating a host element in tomcat. As for Apache Virtual Hosting...is that when the tomcat is listening on more then one port but all are handled as if they each called the same port?

RE: Who can help ???

2002-11-18 Thread mech
Think that won't work because Apache sends the request to Tomcat without checking any access file from Apache side. Checkout the examples webapp from Tomcat and have a look at the /jsp/security/ directory. Have a look into the examples webapp's web.xml file for the realm setup (also see tomcat

RE: [CONFIG] Apache2.0.40 + Tomcat4.1.12 + mod_jk - STILL HAVING PROBLEMS

2002-11-18 Thread Anderson, M. Paul
So the property file that looks like this... Here is my workers.properties file: workers.CATALINA_HOME=/usr/jakarta/tomcat workers.java_home=/usr/java/jdk1.3.1_03 ps=/ worker.list=ajp13 worker.ajp13.port=8009 worker.ajp13.host=localhost worker.ajp13.type=ajp13 worker.ajp13.lbfactor=1

Re: Tomcat 4 StandAlone Web Server, Static HTML and Images

2002-11-18 Thread jeff . guttadauro
Looks like you're basically putting your images in its own web app. You may need a WEB-INF directory and trivial web.xml file under the images directory in order for Tomcat to like it as a web app (not sure though). Then, I think your url for the image would be /images/image.gif.

Re: Fresh 4.1.12 install throws exceptions when compiling JSP pages

2002-11-18 Thread Carsten Ziegert
Hi Chris, when upgrading from 3.2.4 to 4.1.12 some weeks ago I run into the same error. After deleting an old servlet.jar in $JAVA_HOME/jre/lib/ext it run fine. Because of the old servlet.jar tomcat fails to compile your servlets having been generated from JSPs according to the old servlet spec

RE: welcome-file-list

2002-11-18 Thread Shapira, Yoav
Hi, ok...bear with my skill level here...you're suggesting the Authentication filter and monitor filter would be separate servlets? Then when the user No. I'm suggesting they be proper filters, per the servlet spec v2.3. Specifically, you'd have two things that implement javax.servlet.filter:

RE: [CONFIG] Apache2.0.40 + Tomcat4.1.12 + mod_jk - STILL HAVING PROBLEMS

2002-11-18 Thread Turner, John
The other stuff like java_home is used to set up aliases to be used later in the file, if needed. All of those loadbalancer and inprocess lines are extra...they don't do anything in the case of one worker on one machine in a non-load-balancing scenario. In a simple Apache + JK + Tomcat config,

RE: Oracle thin client DataSource configuration with tomcat

2002-11-18 Thread Sinclair, Alan (CORP, GEAccess)
What happens when you attempt to refrence the JSP from a browser ? The connection pool with Oracle is not established until a JSP which uses the pool is requested. as -Original Message- From: Manavendra Gupta [mailto:[EMAIL PROTECTED]] Sent: Monday, November 18, 2002 8:30 AM To: Tomcat

RE: [CONFIG] Apache2.0.40 + Tomcat4.1.12 + mod_jk - STILL HAVING PROBLEMS

2002-11-18 Thread Jaimes Blunt
Hmmm I tried remming out the Include file, and Apache starts up fine. I then tried putting the data in the mod_jk.conf file into the httpd.conf file in APACHE_HOME/conf and when i tried to start I got the segmentation fault again. Any ideas? Jaime -Original Message- From: Turner, John

RE: Who can help ???

2002-11-18 Thread Collins, Jim
I use this in the httpd.conf file: Location /webapp-info AuthType Basic AuthName MyRealm LDAPAuth On LDAPBase o=MyComp.com LDAPServer ldap://ldap:389/ LDAPuseridAttr uid LDAPSearchMode subtree require valid-user /Location Regards Jim.

Re: Tomcat as NT Service

2002-11-18 Thread Jacob Kjome
See http://www.mattkelli.com/tech/tomcat/ntservice.htm Please search for this kind of stuff on the list, though. I've answered this question dozens of times. Jake At 11:20 AM 11/18/2002 +, you wrote: Hello, When I install tomcat 4.1.12 in my w2k system, I didn't choose to install as

RE: [CONFIG] Apache2.0.40 + Tomcat4.1.12 + mod_jk - STILL HAVING PROBLEMS

2002-11-18 Thread Turner, John
Nope. Can you post the contents of mod_jk.conf? John -Original Message- From: Jaimes Blunt [mailto:[EMAIL PROTECTED]] Sent: Monday, November 18, 2002 10:45 AM To: Tomcat Users List Subject: RE: [CONFIG] Apache2.0.40 + Tomcat4.1.12 + mod_jk - STILL HAVING PROBLEMS Hmmm I

Re: Oracle thin client DataSource configuration with tomcat

2002-11-18 Thread Manavendra Gupta
I always get the line no luck yet (as printed in the JSP page). The dataSource is never created. Manav. - Original Message - From: Sinclair, Alan (CORP, GEAccess) [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Sent: Monday, November 18, 2002 9:10 PM Subject: RE: Oracle thin

RE: [CONFIG] Apache2.0.40 + Tomcat4.1.12 + mod_jk - STILL HAVING PROBLEMS

2002-11-18 Thread Ralph Einfeldt
mod_jk has three modes of operation - in process worker in this case the vm runs inside the memory space of apache process. This allows for a faster communication. - default worker in this case tomcat and apache are two distinct processes and communicate through IPC. ( -

Tomcat says : JSP file not found

2002-11-18 Thread mbe . bem
Hi! Presently, I am using Jakarta-Tomcat vers. 3.2 with port:8188 (see server.xml downwords). My application (MyApp) is stored under {TOMCAT-HOME}/webapps /MyApp, and I did store my Jsp-files here (i.e. under {TOMCAT-HOME}/webapps/ MyApp/myJsp.jsp ). This is the configuration of my web.xml:

Re: Closed sockets: Current state = FLUSHED, new state = CODING

2002-11-18 Thread Alexander Banthien
Hi, I was getting several requests lateley about strange log messages (Closed sockets: Current state = FLUSHED, new state = CODING) from tomcat (mine is 3.2.4) about which there is a post from me a couple of weeks back. Along with these messages went very bad server performance and finally a

RE: Tomcat 4.0.6 and Java versions, FOUND BUG!

2002-11-18 Thread Kristján Bjarni Guðmundsson
Ok just went searching the java bug database and found this: http://developer.java.sun.com/developer/bugParade/bugs/4776385.html This seems to be the same issue since Tomcat is now compiled using 1.4. Fix seems to use hotspot instead of classic runtime, unfortunately SUN doesn't

RE: [CONFIG] Apache2.0.40 + Tomcat4.1.12 + mod_jk - STILL HAVING PROBLEMS

2002-11-18 Thread Jaimes Blunt
Here it is: ## Auto generated on Mon Nov 18 10:08:28 EST 2002## IfModule !mod_jk.c LoadModule jk_module /usr/local/apache2/modules/mod_jk.so /IfModule JkWorkersFile /usr/jakarta/tomcat/conf/jk/workers.properties JkLogFile /usr/jakarta/tomcat/logs/mod_jk.log JkLogLevel emerg

mod_jk not passing parameters:

2002-11-18 Thread Andoni
Hello, It would seem that my Apache web server is not passing on parameters to URLs to Tomcat. This is the kind of thing I'm getting in my mod_jk.log file: [jk_uri_worker_map.c (335)]: jk_uri_worker_map_t::uri_worker_map_close, NULL parameter [jk_uri_worker_map.c (185)]: In

How to Redirect ???

2002-11-18 Thread wolfgang
Hi there, I wanna make users redirect(not forward) to http://www.yahoo.com , but cannot make it... I added the following elements in the struts-config.xml global-forwards forward name=finish path=http://www.yahoo.com; redirect=true / /global-forwards and the following code in the execute

Re: How to Redirect ??? sorry...

2002-11-18 Thread wolfgang
oops... I'm sorry I was gonna send the email to struts-user... please just ignore my previous email. -- wolfgang [EMAIL PROTECTED] -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

IIS isapi

2002-11-18 Thread Jose Antonio Martinez
I have followed the manual: http://www.arsysbrother.com:8080/tomcat-docs/jk2/jk/iishowto.html#Introduction but i have a problem no documented... when i try to view: http://www.mylocaldomain.com/examples/jsp/index.html it is required auth access (login+password). When i put anything it is

RE: [CONFIG] Apache2.0.40 + Tomcat4.1.12 + mod_jk - STILL HAVING PROBLEMS

2002-11-18 Thread Turner, John
Yikes. That's it? It should be much longer: http://www.johnturner.com/howto/mod_jk_conf.html That one is from 4.0.4, I've verified that one from 4.1.12 is practically identical. Not sure where to go from here. John -Original Message- From: Jaimes Blunt [mailto:[EMAIL PROTECTED]]

RE: [CONFIG] Apache2.0.40 + Tomcat4.1.12 + mod_jk - STILL HAVING PROBLEMS

2002-11-18 Thread Jaimes Blunt
Did you notice any setting smissing in the server.xml file? Is there somewhere else where I should be placing config references in any of the Tomcat files? Jaimes -Original Message- From: Turner, John [mailto:[EMAIL PROTECTED]] Sent: Monday, November 18, 2002 11:17 AM To: 'Tomcat

RE: Tomcat 4 StandAlone Web Server, Static HTML and Images

2002-11-18 Thread Steve Beech
Jeff's right. You're web app is in the folder /servlet so your images should be in /servlet/images - of course I'm assuming you've got images on the index.shtml page and these are the ones you can't see. You only need the one web.xml file (in the WEB-INF folder for your web-app) - a second under

Re: mod_jk not passing parameters: - IGNORE

2002-11-18 Thread Andoni
Please ignore this message - The Database URL was set for my live rather than development server!! Andoni. -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: [CONFIG] Apache2.0.40 + Tomcat4.1.12 + mod_jk - STILL HAVING PROBLEMS

2002-11-18 Thread Turner, John
It looked OK to me. Is there another instance of ApacheConfig somewhere the might be getting called instead of the one you think is being called? That said, I would just grab the mod_jk.conf file from that link, edit it to fit your environment, and stick it in httpd.conf and see what happens.

Re: Re: Re: why Tomcat 4.0.4 creates new instance of servlet, when applet make first request to servlet?

2002-11-18 Thread Daniil Ivanov
Are your applet and browser calling the same url? If you defined multiple servlet definitions for your servlet in web.xml you will get separate instances. Also if you have your context loaded twice: defined as a context in server.xml and autoloaded. Charlie Thanks! The problem was that I

RE: welcome-file-list

2002-11-18 Thread Anderson, M. Paul
That is some good information which I wish I knew before I started the site! What do you think the learning curve is on using filters and would it be worth the effort (dicounting the time/cost factor) to reorganize my design using proper filters? What would be the major benefits of making this

RE: [CONFIG] Apache2.0.40 + Tomcat4.1.12 + mod_jk - STILL HAVING PROBLEMS

2002-11-18 Thread Jaimes Blunt
Ok, last ditch effort before I throw the server out the window: Here is a copy of my httpd.conf file located in APACHE_HOME/conf: I have attached the filew to email. Please let me know if I should include all text in email. Jaimes -Original Message- From: Turner, John [mailto:[EMAIL

Problem with Oracle/Global Naming Resource

2002-11-18 Thread Roberts, Eric
I am getting the following error when attempting to load the Oracle database driver as a globally pooled resource: java.sql.SQLException: Cannot load JDBC driver class 'null' at org.apache.commons.dbcp.BasicDataSource.createDataSource(BasicDataSource.java:529) at

RE: Tomcat as NT Service

2002-11-18 Thread Mehdi . Nejad
Paul, try http://www.firedaemon.com/ I used it to set up Unreal Tournament server as a service - i dont see why it shouldn't work for Tomcat :o) hope it helps, Mehdi Mehdi Nejad - Senior Developer [EMAIL PROTECTED] ~~ Bluewave Ltd - Business Solutions

Problem with Oracle/Global Naming Resource

2002-11-18 Thread Norbert G Vogl
Return Receipt Your Problem with Oracle/Global Naming Resource document :

RE: [CONFIG] Apache2.0.40 + Tomcat4.1.12 + mod_jk - STILL HAVING PROBLEMS

2002-11-18 Thread Turner, John
Well, I took a quick look, and it seems fine, but I can't promise that everything will work. I think you said you are using RH 8. Have you looked at my HOWTO for 7.2? John -Original Message- From: Jaimes Blunt [mailto:[EMAIL PROTECTED]] Sent: Monday, November 18, 2002 11:42 AM

Problem with Oracle/Global Naming Resource

2002-11-18 Thread Kristján Bjarni Guðmundsson
Return Receipt Your Problem with Oracle/Global Naming Resource document :

RE: welcome-file-list

2002-11-18 Thread Shapira, Yoav
Howdy, What do you think the learning curve is on using filters and would it be The learning curve for these types of filters (authenticators, loggers) is short and not steep. This is a good place to start: http://www.javaworld.com/javaworld/jw-06-2001/jw-0622-filters.html worth the effort

RE: [CONFIG] Apache2.0.40 + Tomcat4.1.12 + mod_jk - STILL HAVING PROBLEMS

2002-11-18 Thread Jaimes Blunt
I have read the HowTo's on your page. Do you think that I should build mod_jk from scratch as I just downloaded the mod_jk2.0.42.so file, and renamed it to mod_jk.so. Also, should I be using that so or should i get the mod_jk-1.3 file? Yes I am using RH8 with Apache2.0.43 newly instealled as

Re: Serving PDF files on Apache2 + Tomcat4.1

2002-11-18 Thread achana
Hugo Villeneuve wrote: I can share the experience I had with IE5, Tomcat 4.1 and serving dynamic PDF. IE 5 have a problem with the Cache-Control parameter in the HTTP 1.1 header. With Tomcat 4.1, if I just send the pdf on the OutputStream every think is working fine. What is your problem

Hugo : Serving PDF files on Apache2 + Tomcat4.1

2002-11-18 Thread achana
Hugo Villeneuve wrote: I can share the experience I had with IE5, Tomcat 4.1 and serving dynamic PDF. IE 5 have a problem with the Cache-Control parameter in the HTTP 1.1 header. With Tomcat 4.1, if I just send the pdf on the OutputStream every think is working fine. What is your problem

RE: [CONFIG] Apache2.0.40 + Tomcat4.1.12 + mod_jk - STILL HAVING PROBLEMS

2002-11-18 Thread Turner, John
You should be using the mod_jk that is compatible with Apache 2. My personal preference is to build from scratch, but that's me. The modules directory is the correct place for .so files under Apache 2. I guess it's possible that there is enough difference between 7.2/3 and 8 that things that

RE: welcome-file-list

2002-11-18 Thread Anderson, M. Paul
Thanks Yoav...I have some other modifications that were just giving to me for the site and I think I may try to implement the architecture you suggested at the same time. I will check out some tutorials and see what I can come up with. Your help is much appreciated! Any thoughts on how to

  1   2   >