RE: SEEKING URGENT ASSISTANCE

2002-06-24 Thread Cor Hofman
No, this is not funny at all. Anyone reacting to this will loose some serious money. They claim they are going to need some money from you in order to free their $ milions from their, so called, swiss bank accounts. So be warned. This is a known trick from criminal organizations. -Original

Re: SEEKING URGENT ASSISTANCE

2002-06-24 Thread Nikola Milutinovic
No, this is not funny at all. Anyone reacting to this will loose some serious money. They claim they are going to need some money from you in order to free their $ milions from their, so called, swiss bank accounts. So be warned. This is a known trick from criminal organizations.

Re: SEEKING URGENT ASSISTANCE

2002-06-24 Thread Ravishankar S
i thought this was a tech discussion list? what the hell is this message doing in such a list???!!! On Monday 24 June 2002 12:13 pm, you wrote: No, this is not funny at all. Anyone reacting to this will loose some serious money. They claim they are going to need some money from

Native library cannot be loaded twice

2002-06-24 Thread Andreas Hirner
Hello, I have a problem calling a native library within a servlet. The library is initialised like that: static { try { System.loadLibrary(mapscript); System.err.println(libmapscript.so loaded); } catch (UnsatisfiedLinkError e) { System.err.println(libmapscript.so not loaded: +

RE: Native library cannot be loaded twice

2002-06-24 Thread tamir
Hi Andrea, You must make sure your native library is loaded once, thus moving it to another place in the class loader hirerachy. One solution would be to move this class to common/lib. Which isn't re-loaded when reloading your classes. You can also search the tomcat emails for prvious questions

RE: Can servlet write to file in /WEB-INF?

2002-06-24 Thread tamir
Hi, Making URLConnection to a directory under WEB-INF, is the same like writing this url in the explorer. However, You can't go directly to any directory under WEB-INF in that way, which justifies your failure of writing to this directory. You can write to files in this directory, if you don't

RE: Can servlet write to file in /WEB-INF?

2002-06-24 Thread andre . powroznik
Instead there is a method in the servlet context : getRealPath(String relativefilename) - then you can open a normal fileoutputstream. -Original Message- From: tamir [mailto:[EMAIL PROTECTED]] Sent: 24 June 2002 11:31 To: 'Tomcat Users List' Subject: RE: Can servlet write to file in

Re: mod_jk /examples/* works but /servlet/* doesn't

2002-06-24 Thread Brendan . Richards
After thinking about it, JkMount /servlet/* ajp13 quite clearly mounts servlets in the ROOT webapp only. Try putting a servlet into $CATALINA_HOME/webapps/ROOT/WEB-INF/classes/ - Brendan, Thanks extending your help. I can go with

Configuration of Tomcat4.0.3 with Apache1.3.19

2002-06-24 Thread SINGH,SANDEEP (HP-India,ex2)
Can we configure Tomcat4.0.3 with Apache1.3.19 in HPUX platform ? If yes then where can I get the shared lib. mod_jk.so for HPUX platform ? regards sandeep

query three remote databases at the same time

2002-06-24 Thread Halil AKINCI
Hi, How can I query three remote databases at the same time using servlet? I want to send a parameter this databases using a HTML form. Remote servers receive this parameter, execute query and send results to client. I want to display all results (that remote databases send) one HTML page.

Re: Tomcat 4.0.4 MyApp as default context - ClassNotFoundException: org.hsql.jdbcDriver

2002-06-24 Thread Martin Jacobson
Jakarta Tomcat Newsgroup (@Basebeans.com) wrote: Subject: Tomcat 4.0.4 MyApp as default context - ClassNotFoundException: org.hsql.jdbcDriver From: Matt Raible [EMAIL PROTECTED] === I have an entry for my web-application in server.xml so I can use a JDBCRealm and a JNDI Datasource. When

apache could not be started

2002-06-24 Thread Hao Ding
I connected Tomcat4.0.3 with Apache1.3.26 using mod_jk.so. In the httpd.conf file I included ..tomcat-4.0.3/conf/mod_jk.conf. I then tested apache configure $ apachectl configtest the syntas is od, but when I started the appache $ apachectl start I got a message httpd could not be started

Re: query three remote databases at the same time

2002-06-24 Thread Ravishankar S
Hi Halil, open three different connections and close them in the right order Connection con1=DriverManager.getConnection(); Connection con2=DriverManager.getConnection(); do ur stuff here con2.close(); con1.close(); HTH ravi - Original Message - From: Halil AKINCI

RE: Tomcat 4 performance issues - Trying Tomcat 4.1.3 Beta

2002-06-24 Thread Reynir Hübner
no not really. but for the reference of what the jsp-pages are doing in this application (that I tested), we are using OSCache from www.opensymphony.com, that seems to crack up when being run in 4.1.5 (really weird... I dont know what is happening). We are using few custom tags, not alot but

want to amke hidden file

2002-06-24 Thread puneet sachar
hi guys Well i have to amke a file in tomcat directory... which is easily done by using File object and will be palced according to wish how can i change the attribute of the file... i mean if some information i'm sending to user to his PC.. and want that file is read-only and hidden..

native library not found

2002-06-24 Thread Josef Buscher
Hallo, I use a native library which is called at startup of my application by the loadLibrary() method. This worked fine with Tomcat 3.2.3. Now I moved my project to Tomcat 4.0.4 and get an error message saying: Error: no PFactory in java.library.path where PFactory is the name of the

how to set environment variable in tomcat?

2002-06-24 Thread Johnny
to all the tomcat users, if i want to set my own environment variable for my application running in tomcat, what should i do? do i have to edit the server.xml? in jserv, we using ApJServEnvVar for defining the environment variable in jserv.conf, so how about tomcat? regards johnny. --

AW: native library not found

2002-06-24 Thread Ralph Einfeldt
java.library.path is a system property. This can either be set through System.setProperty() or at startup of java with -Djava.library.path=path. To achive this for tomcat you can set it through the environment variable JAVA_OPTS. (Have a look at catalina.bat) -Ursprüngliche

RE: want to amke hidden file

2002-06-24 Thread Vikramjit Singh
the methods of doing what you want are available in java.io.File. Regards, Vikramjit Singh, Systems Engineer, GTL Ltd. Ph. 7612929-1031 -Original Message- From: puneet sachar [mailto:[EMAIL PROTECTED]] Sent: Monday, June 24, 2002 2:17 AM To: Tomcat Users List Subject: want to amke

Re: path info for servlets and JSPs

2002-06-24 Thread cbarnes
I don't know if you can do exactly what you want but an alternative could be to url-encode the path in the request as a variable for example: http://server/application/mypage.jsp?path =%2fextra%2fpath%2finfo (I think %2f = / but please check!) Brendan I want to avoid url-encoding the

AW: how to set environment variable in tomcat?

2002-06-24 Thread Ralph Einfeldt
If you really want to use environment variables you have to define them outside of tomcat. (E.g. in a (wrapper-)startscript for tomcat). Note that in java reading of environment variables is deprecated (see alse API doc of System.getenv() in favour of systzem properties. -Ursprüngliche

Re: Tomcat 4 performance issues - Trying Tomcat 4.1.3 Beta

2002-06-24 Thread Remy Maucherat
Reynir Hübner wrote: no not really. but for the reference of what the jsp-pages are doing in this application (that I tested), we are using OSCache from www.opensymphony.com, that seems to crack up when being run in 4.1.5 (really weird... I dont know what is happening). We are using few

RE: Tomcat 4 performance issues - Trying Tomcat 4.1.3 Beta

2002-06-24 Thread Reynir Hübner
hi Remy, I don't see how opensymphony would create problems, but 4.1.5 introduces tag instance pooling. If those are tags which keep a lot of stuff in memory, then I suppose it could hurt. That's what it is. both in memory and on disk. Or it is, as I stated before, an

Re: Tomcat 4 performance issues - Trying Tomcat 4.1.3 Beta

2002-06-24 Thread Remy Maucherat
Jacob Hookom wrote: I have found performance problems with the new Coyote connector, it runs fine initially, but after about 2 hours of simple operation, it hangs on page requests at 4-6 seconds while at the same time, I can hit the standard HTTP connector on a different port, and requests

Re: Tomcat 4 performance issues - Trying Tomcat 4.1.3 Beta

2002-06-24 Thread Remy Maucherat
Reynir Hübner wrote: hi Remy, I don't see how opensymphony would create problems, but 4.1.5 introduces tag instance pooling. If those are tags which keep a lot of stuff in memory, then I suppose it could hurt. That's what it is. both in memory and on disk. Or it is, as I

RE: Can servlet write to file in /WEB-INF?

2002-06-24 Thread Les Hughes
Hi, getRealPath() and its ilk are really very evil. If the webapp isn't exploded into the filesystem - i.e. it's run straight from the war file then you wont be able to write to the filesystem under WEB-INF anyway. And that's not addressing *why* a webapp requires filesystem access and the

RE: Native library cannot be loaded twice

2002-06-24 Thread Andreas Hirner
Hi, ok, I realised that I cannot load a native library twice. So I wrote and compiled a class called InitMapserver, which looks like that: public class InitMapserver { static { try { System.loadLibrary(mapscript); System.err.println(libmapscript.so loaded); } catch

SV: Native library cannot be loaded twice

2002-06-24 Thread hermod . opstvedt
Hi Usatisfied link error means that it is not finding it or something it relies on. Hermod -Opprinnelig melding- Fra: Andreas Hirner [mailto:[EMAIL PROTECTED]] Sendt: 24. juni 2002 12:12 Til: Tomcat Users List Kopi: [EMAIL PROTECTED] Emne: RE: Native library cannot be loaded twice

SV: Native library cannot be loaded twice

2002-06-24 Thread Andreas Hirner
Hi, Usatisfied link error means that it is not finding it or something it relies on. Hermod Ok. But in order to make sure I loaded the native library successfully, would you agree with me that I took the right steps? I am not that familiar with tomcat and appreciate any hint. Andreas --

SV: Native library cannot be loaded twice

2002-06-24 Thread hermod . opstvedt
Hi Yes. But have you ensured that your native library and its dependends are in the java.library.path ? Hermod -Opprinnelig melding- Fra: Andreas Hirner [mailto:[EMAIL PROTECTED]] Sendt: 24. juni 2002 12:33 Til: Tomcat Users List Kopi: [EMAIL PROTECTED] Emne: SV: Native library cannot

Problem with undeploy in root context

2002-06-24 Thread Bartek Teodorczyk
When I use deploy/undeploy method to not root context everything is OK: 1. after deploy manager/list shows: /gallery:running:0:D:\java\jakarta-tomcat 4.1\work\Standalone\localhost\manager\gallery.war 2. and after undeploy above line in manager/list disapears. But trying perform the same in root

SessionListener does not get enough information

2002-06-24 Thread Software AG
Hi there. I have a web application that stores some information into a database. Now if the transaction is not complete (which means the user did not go through a page asking do you want to save [y/n]?) all stored data shall be dropped again. I detect this dropped transaction with a

newbie: requested resource not available

2002-06-24 Thread pr1
Hello, I have just installed Tomcat 4.0.4 and when I click the JSP Examples link, I get the following error report: type Status report message /examples/jsp/ description The requested resource (/examples/jsp/) is not available. Any help would be much appreciated. Best regards, Philippe

RE: SessionListener does not get enough information

2002-06-24 Thread tamir
Hi Hiran, I just bugged into this problem yesterday. I don't understand why the sessionlistener is designed this way... (Explanation please ?) A workaround I thought, was to use the attributelistener instead. When one attribute I choose is removed, I understand the next step is the session to be

AW: newbie: requested resource not available

2002-06-24 Thread Software AG
You've got some more information on that error page that should actually help you on, otherwise also check the logfiles (all of them). Hiran -Ursprüngliche Nachricht- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Gesendet: Montag, 24. Juni 2002 13:31 An: [EMAIL PROTECTED]

AW: SessionListener does not get enough information

2002-06-24 Thread Ralph Einfeldt
Define a class (bean) that store the information that the user has to confirm. Let this classs implement the HttpSessionBindingListener and do the 'rollback' in the valueUnbound() method. -Ursprüngliche Nachricht- Von: Software AG [mailto:[EMAIL PROTECTED]] Gesendet: Montag, 24. Juni

Re: Native library cannot be loaded twice

2002-06-24 Thread Andreas Hirner
Hi Yes. But have you ensured that your native library and its dependends are in the java.library.path ? Hermod Tomcat runs on linux and the path of the native library is set via the LD_LIBRARY_PATH variable. If I load the native library in the servlet, the library is accessed correctly

Re: native library not found

2002-06-24 Thread Josef Buscher
Hi, thanks for the hint. it works well when tomcat is started via catalina 'start' but fails when tomcat runs as a service on win2000 (what it actually should) Josef - Original Message - From: Ralph Einfeldt [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Monday, June

RE: MOD_JK Problem ?

2002-06-24 Thread Turner, John
Well said, and I agree 100%. I spent 8 business days trying to get Apache 2 with Tomcat 4 working, both with mod_webapp and mod_jk, before giving up and going back to Apache 1.3. Granted, I am not experienced with tomcat, which may account for some of the delay, but your comments are right on

Re: SessionListener does not get enough information

2002-06-24 Thread Gabriel Gajdos
Another idea (I do not like HttpSessionBindingListener): On sessionDestroyed you should be able to get Session ID information. So just write your method: MySessionDataDropper.drop(String sessionID) or (MyObject data) which will drop all data identified by sessionID. Imagine: You have one

RE: Microsoft SQL Server 2000 Driver for JDBC Errors

2002-06-24 Thread Turner, John
I'm using the driver straight from a servlet class without any problems. I don't think your driverName parameter should have the complete URL string in it...shouldn't it just be com.microsoft.jdbc.sqlserver.SQLServerDriver ?? I would also try putting the actual hostname in there (like

AW: Native library cannot be loaded twice

2002-06-24 Thread franzR
Hi, What kind of native library are you loading ? (Sorry, I don't know the former emails!) If you working on Unix and you are loading a shared lib you must ensure that the path to the lib is know to the tomcat process. Either you configure the tomcate environment (catalina) or use the

RE: MOD_JK Problem ?

2002-06-24 Thread Faine, Mark
Nothing but agreement here, today will be the 5th business day that I will spend trying to figure out why Apache 2 and Tomcat 4 will not work together. I should be able to download them configure them and just go. Everyone says use Apache/Tomcat it's free, what they don't say is it's free for a

Re: native library not found

2002-06-24 Thread Josef Buscher
Hi all, if you have tomcat running as service under windows nt, 2000, etc and want tomcat to pass parameters to the jvm then use the field 'JVM Option Number n' in the registry's HKEY_LOCAL_MACHINE/System/CurrentControlSet/Services/Apache Tomcat/Parameters do not forget to increase the

RE: Servlet debug.

2002-06-24 Thread Adam Greene
I know this is probably late, but if all else fails, get Eclipse (http://www.eclipse.org) and install the Tomcat plugin (on the community page at Eclipse). It allows you to load Tomcat inside of Eclipse and debug it (just like JBuilder Professional or JBuilder Enterprise, I don't think JBuilder

TC 4.1.3 ExptyStackException

2002-06-24 Thread Martin Jacobson
Since moving to TC4.1.3, I get this: 2002-06-24 14:48:22 HttpProcessor[80][4] process.invoke java.util.EmptyStackException at java.util.Stack.peek(Stack.java:82) at java.util.Stack.pop(Stack.java:64) at

AW: Native library cannot be loaded twice

2002-06-24 Thread franzR
Concerning the JDK documentation a native lib should be loaded in a static scope. Static resources are processed differently, because the runtime systems has to initialize all static resources at the beginning. After that the runtime system tries to initialize objects and these objects can - of

AW: newbie: requested resource not available

2002-06-24 Thread franzR
Hi, your web server has normaly no knowledge that /examples/jsp/ is processed by a servlet engine. Therefore the web server looks in its own document root and will detect that this resource is not available. As tomcat is normaly listen for requests on port 8080 , you have to complete your URL

RE: Can servlet write to file in /WEB-INF?

2002-06-24 Thread Chris Bailey
Right, keep in mind the whole WAR file aspect. If your web app is not packaged as a WAR file then it's less of an issue, and you could use getRealPath, but if it is a WAR - even if it gets expanded by the container, you can't use getRealPath and should write to a temp directory, or some other

tomcat to run perl cgis?

2002-06-24 Thread Scott Purcell
Hello, I have Tomcat 4.0.3 running on my NT box. I do mostly servlet work, but I have the need to run a Perl CGI for a web project. I have put some .pl files and .cgi files into the docroot, but they do not execute properly. Is there a way to allow Perl to run with Tomcat? Could someone advise

AW: Native library cannot be loaded twice

2002-06-24 Thread Andreas Hirner
Hi, What kind of native library are you loading ? (Sorry, I don't know the former emails!) I am working on Linux and set the path to the shared C library using the LD_LIBRARY_PATH. If you working on Unix and you are loading a shared lib you must ensure that the path to the lib is know to

Re: mod_jk.so for the new tomcat!

2002-06-24 Thread Sean M Alderman
On Sun, 2002-06-23 at 10:54, abhishek srivastava wrote: Hello All, I have downloaded the new tomcat 4.0.4 today. I also downloaded the source for the jakarta-tomcat-connectors-4.0.4-src ... when I run ant the build says build successfull. but there is no mod_jk.so to be found. When you

Re: TC 4.1.3 ExptyStackException

2002-06-24 Thread Remy Maucherat
Martin Jacobson wrote: Since moving to TC4.1.3, I get this: 2002-06-24 14:48:22 HttpProcessor[80][4] process.invoke java.util.EmptyStackException at java.util.Stack.peek(Stack.java:82) at java.util.Stack.pop(Stack.java:64) at

RE: MOD_JK Problem ?

2002-06-24 Thread Andy Eastham
Mark, The Free for a reason comment is a too harsh. Most Apache Foundation Software is of a higher quality than most commercial software in my opinion. I didn't want to start a flame war when I sent my original post. My point was that the Apache2 connectors area is significantly below the high

FW: Configuration of Tomcat4.0.3 with Apache1.3.19

2002-06-24 Thread SINGH,SANDEEP (HP-India,ex2)
No one has answer to my question ? Please read this mail if u have not read before. thanks and regards sandeep -Original Message- From: SINGH,SANDEEP (HP-India,ex2) Sent: Monday, June 24, 2002 1:46 PM To: [EMAIL PROTECTED] Subject: Configuration of Tomcat4.0.3 with Apache1.3.19

RE: MOD_JK Problem ?

2002-06-24 Thread Faine, Mark
Yeah, you are right. I was a bit too harsh. Just frustrated, but I still shouldn't take it out on the developers. I admit I usually have very little problems with Apache Foundation Software. This time has been rough though. I'm actually trying to promote the use of Apache/Tomcat over a

HTTP 405 error

2002-06-24 Thread Halil AKINCI
please help me, I can't run my JSP files. I can run my servlet using jakarta-tomcat-3.3.1, but I want to run my jsp files and when I want to run my jsp files I receive HTTP 405 error message. what can I do?

Re: TC 4.1.3 ExptyStackException

2002-06-24 Thread Martin Jacobson
Remy Maucherat wrote: The old HTTP/1.1 connector is unsupported (and apparently, a bug was introduced in there). Try using Coyote HTTP/1.1 instead. You can look at the default configuration file to see how to configure it. Remy Thanks for the quick response! Have tried that, but I

RE: HTTP 405 error

2002-06-24 Thread Anoop Kumar V
do u get any errors on the console window of tomcat?? Anoop Kumar V. -Original Message- From: Halil AKINCI [mailto:[EMAIL PROTECTED]] Sent: Monday, June 24, 2002 7:57 PM To: Tomcat Users List; JSP groups Subject: HTTP 405 error please help me, I can't run my JSP files. I can run my

error and output redirected on file with Tomcat 4.0.

2002-06-24 Thread jsmadja
Hello, I don't know how to send error or output streams into a file so that system.err or system.out or printstackTrace are writen on file instead of screen which not contains enough space to see the whole output. I use Logger element apply on a context but it doesn't work: A context can

Re[2]: MOD_JK Problem ?

2002-06-24 Thread Jacob Kjome
Hello Mark, A binary version of mod_jk for Windows that works with Apache 2.0.39 has been made available at this site: http://www.acg-gmbh.de/mod_jk/ Note that the only reason the old module didn't work with Apache 2.0.39 is that something changed in Apache, not the Tomcat connectors. The

Re: TC 4.1.3 ExptyStackException

2002-06-24 Thread Remy Maucherat
Martin Jacobson wrote: Remy Maucherat wrote: The old HTTP/1.1 connector is unsupported (and apparently, a bug was introduced in there). Try using Coyote HTTP/1.1 instead. You can look at the default configuration file to see how to configure it. Remy Thanks for the quick

Re: HTTP 405 error

2002-06-24 Thread Halil AKINCI
Yes, this this error message is displayed on the tomcat console; 2002-06-24 17:23:34 -Ctx ( /VT ): Status code: 405 request: R ( /VT + /jsp/query.jsp + null ) msg: HTTP GET is not supported by this URL - Original Message - From: Anoop Kumar V [EMAIL PROTECTED] To: 'Tomcat Users List'

RE: Re[2]: MOD_JK Problem ?

2002-06-24 Thread Faine, Mark
Thanks, for your reply but I think I apologized already. Still I do agree with what you say (for the most part). Also, I'm trying to build for Solaris 8. Got a binary for that? I do, but mine doesn't seem to be working. Thanks, -Mark -Original Message- From: Jacob Kjome

AW: error and output redirected on file with Tomcat 4.0.

2002-06-24 Thread Software AG
Hi, jsmadja. I cannot follow your problem. You want to have everything your application (=servlets and other code) prints to stderr/stdout be redirected to a file? Here I have the standard installation of Tomcat on a W2K box. As soon as Tomcat starts as a service, stdout and stderr are

RE: Re[2]: MOD_JK Problem ?

2002-06-24 Thread Faine, Mark
Anyone seen this error before? (from mod_jk.log) [Mon Jun 24 09:28:38 2002] [jk_connect.c (151)]: jk_open_socket, connect() failed errno = 146 [Mon Jun 24 09:28:38 2002] [jk_ajp_common.c (599)]: In jk_endpoint_t::ajp_connect_to_endpoint, failed errno = 146 Thanks, -Mark -Original

R: HTTP 405 error

2002-06-24 Thread Alessio Fiore
Hi Halil, maybe you disabled GET requests for your JSP. Have a look at this tomcat3 examples application's web.xml: security-constraint web-resource-collection web-resource-nameProtected Area/web-resource-name !-- Define the context-relative URL(s) to be

Re: how to set environment variable in tomcat?

2002-06-24 Thread Jacob Kjome
Hello Johnny, Use context-param's in your web.xml. For instance: context-param param-namedatabaseUrl/param-name param-valuejdbc:postgresql:msrd/param-value /context-param Context parameters can be added to your web.xml near the top of the file after display-name and

RE: Re[2]: MOD_JK Problem ?

2002-06-24 Thread andre . powroznik
Hello, Google told me : - Original Message - From: mike niemaz [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, January 17, 2001 11:45 AM Subject: SOLVED: open_socket, connect() failed errno = 146 (WAS upgrading to mod_jk ajp13 won't work) I solved my problem by

javax.naming.NamingException: Cannot create resource instance

2002-06-24 Thread Kumar
Hi, Can anyone help me how to configure JDBC DataSource using IBM DB2 as the database.I had gone through the solution Generic DataSource Resource Factory Available. JDBC Data Sources. posted by Mr.Anthony Dodd.But there the solution was explained using Oracle database.Has anyone tried

Re[4]: MOD_JK Problem ?

2002-06-24 Thread Jacob Kjome
Hello Mark, Sorry, didn't get that email before I sent mine. Also, I don't use Solaris so I can't help you there. Good luck! Jake Monday, June 24, 2002, 9:42:52 AM, you wrote: FM Thanks, for your reply but I think I apologized already. Still I do agree FM with what you say (for the most

mod_jk2 binary available here

2002-06-24 Thread Douglas, Rory
Title: mod_jk2 binary available here Hello all I have a working binary of mod_jk2.dll (working with Apache 2.0.39 on Win2k Server) if anyone would like to try it out. No guarantees though! You can get it here -- http://www.mycgiserver.com/~worrel cheers Rory Douglas Sun Chemical

Re: javax.naming.NamingException: Cannot create resource instance

2002-06-24 Thread Jacob Kjome
Hello Kumar, Try using the username parameter. Also, the solution that has worked flawlessly for me is here: http://marc.theaimsgroup.com/?l=tomcat-userm=102225547106556w=2 Note that this is with the new 4.1.x versions of Tomcat. If you are using 4.0.x versions, your mileage may vary. Jake

Re: mod_jk2 binary available here

2002-06-24 Thread Jacob Kjome
Hello Rory, Actually, a working version of mod_jk2.dll has already been provided by Apache here: http://jakarta.apache.org/builds/jakarta-tomcat-connectors/jk2/nightly/win32/ However, the real issue now is how does one configure all this? Rory, you would be providing a super service to a lot

Re: outsiders cannot brows my site in tomcat

2002-06-24 Thread Carl W. Jolly
I think the problem is that you have no route for the outside world to get to your router and this is because your providers DNS has no idea that he has to route traffic destined to your internal network to your router. There is a solution there are web sites that will update their DNS entries

rpms for Tomcat4.0.4

2002-06-24 Thread John C Cartwright
Hello All, Is anyone planning to build RPMs for 4.0.4 like there were for 4.0.3? Thanks! -- john = John Cartwright Associate Scientist Geospatial Data Services Group CIRES, National Geophysical Data Center/NOAA (303) 497-6284 [EMAIL

Accessing remote resources

2002-06-24 Thread Damian
Hi all , In order to meet some requirements I have split my j2ee application, I've left my ejb in OC4J and I put the web file in Tomcat (Jakarta). The problem happened when i try to access remote ejb (same machine another container, OC4J more specifically) without succed. Has

Re: Tomcat 4.0.4 MyApp as default context - ClassNotFoundException: org.hsql.jdbcDriver

2002-06-24 Thread @Basebeans.com
Subject: Re: Tomcat 4.0.4 MyApp as default context - ClassNotFoundException: org.hsql.jdbcDriver From: Matt Raible [EMAIL PROTECTED] === I've been using Tyrex on 4.0.1 for over 6 months, I was just making an attempt to make my application accessible from http://localhost/ rather than from

Re: tomcat to run perl cgis?

2002-06-24 Thread Liam Morley
Scott, Have you looked in your $CATALINA_HOME/conf/web.xml for more info about running cgi scripts in Tomcat? That might be all you need; I haven't tested this out, but it looks pretty straight forward... best of luck, Liam Morley Scott Purcell wrote: Hello, I have Tomcat 4.0.3 running on my

RE: SessionListener does not get enough information

2002-06-24 Thread Craig R. McClanahan
On Mon, 24 Jun 2002, tamir wrote: Date: Mon, 24 Jun 2002 14:54:00 +0200 From: tamir [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Subject: RE: SessionListener does not get enough information Hi Hiran, I just bugged into this

Hi Rory, this is ........

2002-06-24 Thread STEVE R BURRUS
Rory, u don't know me at all--just your good luck right?? :)--I am Steve Burrus, and I was just now reading your msg. in which you mentioned the Apache 2.0.39 HTTP Server! I downloaded/installed just yesterday Apache, and was just wondering how you go about integrating it with Tomcat?!!! I

Two questions !

2002-06-24 Thread @Basebeans.com
Subject: Two questions ! From: Dan Paraschiv [EMAIL PROTECTED] === 1. How do I get from a servlet the path where is installed Tomcat (not the path of my web application) ? The solution could be specific to Tomcat, because I am sure that my application it will always run on Tomcat. 2. It is

RE: Two questions !

2002-06-24 Thread Charles N. Harvey III
System variables should be available to all of your servlets and other class files. {java.home} {catalina.home} catalina.home is where tomcat is installed. Charlie -Original Message- From: Jakarta Tomcat Newsgroup [mailto:@[EMAIL PROTECTED]] Sent: Monday, June 24, 2002 12:55 PM

how do I load a native library?

2002-06-24 Thread Andreas Hirner
Hi, I would like to load a native library for all applications in the common/lib directory. So I wrote the following code: public class InitMapserver { static { try { System.loadLibrary(mapscript); System.err.println(libmapscript.so loaded); } catch

AW: Two questions !

2002-06-24 Thread Ralph Einfeldt
One answer to two questions: String mTomcatHome = System.getenv(CATALINA_HOME); -Ursprüngliche Nachricht- Von: Jakarta Tomcat Newsgroup (@Basebeans.com) [mailto:[EMAIL PROTECTED]] Gesendet: Montag, 24. Juni 2002 18:55 An: [EMAIL PROTECTED] Betreff: Two questions ! 1. How

RE: how do I load a native library?

2002-06-24 Thread Robert Priest
Unless I am missing something, it looks like it should work. is mapscript the name of your dll? Is mapscript.dll in your PATH? -Original Message- From: Andreas Hirner [mailto:[EMAIL PROTECTED]] Sent: Monday, June 24, 2002 1:08 PM To: Tomcat Users List Subject: how do I load a native

example mod_jk2 configuration for Apache 2.0.39

2002-06-24 Thread Douglas, Rory
Title: example mod_jk2 configuration for Apache 2.0.39 Hi there I haven't set-up anything really complex but the following setup should work. I haven't got around to trying load-balancing, if anyone does that and gets it working, please share! --- in HTTPD.CONF

RE: Two questions !

2002-06-24 Thread Shapira, Yoav
Howdy, Your two questions are related. The path where tomcat is would be $CATALINA_HOME, which is an environment variable. 2. It is possible to find out (in Java) the value of a system variable like %CLASSPATH% or %CATALINA_HOME% ? There's a difference between an environment variable and a

Re: how do I load a native library?

2002-06-24 Thread Andreas Hirner
Hi Unless I am missing something, it looks like it should work. is mapscript the name of your dll? I am working on Linux, so the shared library is called libmapscript.so Is mapscript.dll in your PATH? as far as I am concerned the path to shared libraries is set in the LD_LIBRARY_PATH

Re: Re[2]: MOD_JK Problem ?

2002-06-24 Thread Milt Epstein
On Mon, 24 Jun 2002, Jacob Kjome wrote: [ ... ] As much as you and I would like the Apache developers to produce binary versions of the software they develop, it is not really their responsibility. It is all of ours. If you believe differently, then you misunderstand open source. I'm not

Design Question: Static vs. Dynamic

2002-06-24 Thread Jacob Hookom
Hello All, I've been constructing a site for a corporate intranet using, of course, JSP and Struts Actions. The functionality of the site is basically a wrapper for a Database whereby each table of information has the Insert/Modify/Delete operation available through JSPs. I can expect 30-50

RE: Design Question: Static vs. Dynamic

2002-06-24 Thread John Gregg
I read somewhere that Yahoo does it half and half. That is, the pages they serve are technically static, but they're regenerated as often as new content, like a news story, becomes available. john -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]. org]On Behalf Of

Re: example mod_jk2 configuration for Apache 2.0.39

2002-06-24 Thread Liam Morley
Rory, thank you very much; that'll get me started. I'm guessing you're running with Tomcat4.1; I'm trying this with Tomcat 4.0.4. With JK1, there was a Listener you could plug in to your $CATALINA_HOME/conf/server.xml (Listener className=org.apache.ajp.tomcat4.config.ApacheConfig.../). Does

AW: Design Question: Static vs. Dynamic

2002-06-24 Thread Ralph Einfeldt
With this amount of users I wouldn't think about caching the html output for dynamic elements. What we do is to cache essential data from the database and generate the pages on the fly. That design works with several 1000 hits an hour. (Not with tomcat but with jserv and gnujsp, but I don't

Re: mod_jk.so for the new tomcat!

2002-06-24 Thread Milt Epstein
On 24 Jun 2002, Sean M Alderman wrote: On Sun, 2002-06-23 at 10:54, abhishek srivastava wrote: Hello All, I have downloaded the new tomcat 4.0.4 today. I also downloaded the source for the jakarta-tomcat-connectors-4.0.4-src ... when I run ant the build says build successfull. but

Re: what happen with this maillist

2002-06-24 Thread Milt Epstein
On Sun, 23 Jun 2002, Craig R. McClanahan wrote: [ ... ] Hint ... see the line below, which is added to the bottom of every single message you receive from the list: To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] So, all you need to do is send an empty message to [EMAIL PROTECTED] and

RE: example mod_jk2 configuration for Apache 2.0.39

2002-06-24 Thread Douglas, Rory
Title: RE: example mod_jk2 configuration for Apache 2.0.39 It looks like the ApacheConfig Listener is still in the Java sources for the connectors, but I don't think it has been updated to the new config format for mod_jk2 so it probably won't work. in Server.xml, the important things are

Where is the log file

2002-06-24 Thread Jerry Jennings
Where dose the output to ServletContect.log go? There are so many log. -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: how do I load a native library?

2002-06-24 Thread Andreas Hirner
Hi Robert, Well, I am running on W2k box. We also call System.loadLibrary in our code, and we don't have any problem. Our classes are in common\lib also: static { System.loadLibrary(STR_LIBRARY); isLoaded = true; } Also, I believe that even if you do call System.loadLibrary

Re: Book recommendation (Summary)

2002-06-24 Thread mls
Summary of all book recommendations received so far. Thanks to all folks who replied to me on and off the list! [EMAIL PROTECTED] wrote: Any recommendation for a good book that covers Tomcat and other related open source technologies? More from an application developers point of view...

  1   2   >