NEWBIE: Passing object from Servlet to JSP with session?

2002-03-20 Thread Ernst Bekker
Hi, I am running TomCat 4, and am attempting to forward an object to a JSP from a servlet. I have set up a new directory under .../webapps and the class files for both the servlet and the class of which I am trying to send an instance of are in .../ webapps/newdir/WEB-INF/classes. The JSP file

AW: Figuring out which Unix process is which

2002-03-20 Thread Ralph Einfeldt
What we do, is to define a command line option that shows up at the beginning of the command string that identifies the site for which this vm is running. As we don't use tomcat, I can't tell you how to achieve this with tomcat. jserv.properties: wrapper.bin.parameters=-DName=sitename

Getting my Java application to run on Tomcat with SSL

2002-03-20 Thread elmo
Hi, I am new with Tomcat. I have this web application which was working well on Tomcat when I called it with: http://127.0.0.1:8080/mywebapp I added the following line to the server.xml file in the tomcat conf directory to have the above run properly: Context path=/mywebapp

Re: tomcat3-3.3a-2 doesn't load turbine-2.1

2002-03-20 Thread Joel Rees
Bill Barker explained: Please look at http://jakarta.apache.org/tomcat/tomcat-3.3-doc/tomcat-ug.html#configuring_c lasses and all will become suddenly clear. In particular, Tomcat 3.3.x ignores jars in $TOMCAT_HOME/lib. Not arguing, just want to clarify this -- does this mean that the

RE: Off Topic: Free J2EE IDE: Which one?

2002-03-20 Thread Chris Pheby
Can you give any more explicit instructions for how to do this?? It would be extremely useful! Thanks in advance. Chris -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of hanasaki Sent: 19 March 2002 17:33 To: Tomcat Users List Subject: Re: Off

Re: NEWBIE: Passing object from Servlet to JSP with session?

2002-03-20 Thread Lev Assinovsky
Bean should have one constractor without papameters. Besides if you setup new directory (the place where you made it is for new application) you should I think put into server.xml the same staff as for examples: !-- Tomcat Examples Context -- Context path=/examples

Re: Deployment from directories not under webapps

2002-03-20 Thread Lev Assinovsky
You are right! app-dir/WEB-INF/lib is the right place, but for some reason some classes can't find anything in the jar. THat's why I put my application jar into $CATALINA_HOME/lib. Yuval Levav wrote: Thanks. I put the jars in WEB-INF\lib. In them are my servlets and classes they

TC 4 - URLRewrite

2002-03-20 Thread Reynir Hubner
Hi, I'm looking for the best way of writing a URLRewrite for tomcat that works similar to mod_rewrite in apache. Does anyone have an opinion on this matter, should I write a filter or extend some of the Tomcat base servlets such as DefaultServlet or InvokerServlet, or even write some kind of

RE: NEWBIE: Passing object from Servlet to JSP with session?

2002-03-20 Thread Ernst Bekker
Bean should have one constractor without papameters. It does have that. Besides if you setup new directory (the place where you made it is for new application) The Context is set up. What am I still missing? Ernst Bekker wrote: Hi, I am running TomCat 4, and am attempting to forward an

Re: tomcat3-3.3a-2 doesn't load turbine-2.1

2002-03-20 Thread Bill Barker
stop-tomcat.jar tomcat.jar are boot-strap jar files. They are not really part of the Tomcat server, since they define ClassLoaders that load the rest of Tomcat. However, removing them will break tomcat.sh. The turbine jars most likely should go under $TOMCAT_HOME/lib/apps. - Original

Problems with redirect

2002-03-20 Thread Miguel Angel Medina Lopez
Hi all: I'm using tomcat 3.2.3 with apache, and I have a problem with the response.sendRedirect method. When I use it with a relative URL the port 0 was added to the result url, but the original didn't have it. Can anyone help me? Than you.

RE: JDBC/JNDI problem, continued - PUZZLED

2002-03-20 Thread Adam Lipscombe
Hi Guys, I would be very grateful if you could let me know when this issue is resolved. (As an aside, this thread has started to sound a tad acrimonious, so lets all bring it down a notch and remember that we are all working hard and are (pretty much) on the same team. Tomcat is a great piece

RE: installation of Tomcat 4.0

2002-03-20 Thread John Niven
Will -Original Message- From: Kwan, William [mailto:[EMAIL PROTECTED]] Sent: 19 March 2002 18:28 To: 'Tomcat Users List' Subject: RE: installation of Tomcat 4.0 John, Alexander suggested that and I tried that but get an error message: C:\catalina debug start Using

AW: problems running tomcat4.04b1 under cygwin

2002-03-20 Thread Alexander Reifinger
Hi Tek, Why are you using cygwin? I mean, I know the Windows command line sucks, but you are not using it with tomcat, you are basically just starting the tomcat main class with it. So there is not need for an advanced shell as far as I can see. i'm trying to run tomcat on windows2000 using

How to apply SSH in Tomcat???

2002-03-20 Thread Wiwi Wiwi
Hi. Have somebody know how to apply SSH (Secure Socket Header) in Tomcat 4.03? _ MSN Photos is the easiest way to share and print your photos: http://photos.msn.com/support/worldwide.aspx -- To unsubscribe: mailto:[EMAIL

Re: How to apply SSH in Tomcat???

2002-03-20 Thread Neo Gigs
Read the Tomcat documentation maybe? - Original Message - From: Wiwi Wiwi [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, March 20, 2002 6:05 PM Subject: How to apply SSH in Tomcat??? Hi. Have somebody know how to apply SSH (Secure Socket Header) in Tomcat 4.03?

AW: How to apply SSH in Tomcat???

2002-03-20 Thread Ralph Einfeldt
Guess you talk about SSL (Secure Socket Layer). http://jakarta.apache.org/tomcat/tomcat-4.0-doc/ssl-howto.html SSH - Secure SHell -Ursprüngliche Nachricht- Von: Wiwi Wiwi [mailto:[EMAIL PROTECTED]] Gesendet: Mittwoch, 20. März 2002 11:05 An: [EMAIL PROTECTED] Betreff: How to apply

Re: AW: How to apply SSH in Tomcat???

2002-03-20 Thread Khurram Munir
houn good qustion __ Do You Yahoo!? Everything you'll ever need on one web page from News and Sport to Email and Music Charts http://uk.my.yahoo.com -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED]

Repost: Finding Tomcat PID (Was Figuring out which Unix process is which)

2002-03-20 Thread camccuk
Hello all, Sorry to repost but this seems to be relevant and something some people are having a problem with. My original post was: - I've had a small script running for a while that basically runs ps -auxfwww and greps the output for

Re: Repost: Finding Tomcat PID (Was Figuring out which Unix processis which)

2002-03-20 Thread David Cassidy
Ralph, you could always use something like wget that will actually get a page from catalina then if you get no output then trigger an alert. that will check that the service is actually able to serve requests rather than just running ... You could make the page that it requests a 'lets check

RE: NEWBIE: Passing object from Servlet to JSP with session?

2002-03-20 Thread Andy Eastham
Ernst, Is MyClass in a package? I think it has to be to work in a JSP. Obviously you also have to import MyClass in the page directive too. Andy -Original Message- From: Ernst Bekker [mailto:[EMAIL PROTECTED]] Sent: 20 March 2002 09:33 To: 'Tomcat Users List' Subject: RE:

Re: Tomact + apache + warp (mod_webapp) + SSL

2002-03-20 Thread Gabriel López Millán
Hi. I have the same problem as you. Tomcat4.0 and mod_webapp with SSL it seems to be a taboo topic. There isn't any information. [EMAIL PROTECTED] wrote: Hi all Does any one have an idea how to make mod_webapp work properly with a apache mod_ssl vitual server? Here is the

Re: NEWBIE: Passing object from Servlet to JSP with session?

2002-03-20 Thread Lev Assinovsky
You have to put into your JSP: %@ page import = mysubdir.MyClass % before jsp:useBean... assuming that MyClass is in newdir/WEB-INF/classes/mysubdir. Ernst Bekker wrote: Bean should have one constractor without papameters. It does have that. Besides if you setup new directory (the place

Re: Getting my Java application to run on Tomcat with SSL

2002-03-20 Thread elmo
Hi again, I resolved the problem in my previous email but I am stuck on a new one. Whenever I am using SOAP requests in my web application, I get the following exception: javax.net.ssl.SSLException : untrusted server cert chain Otherwise, it seems things are working like a charm. I

RE: Tomact + apache + warp (mod_webapp) + SSL

2002-03-20 Thread Ernst Bekker
Similar problem here, if all the content comes from Tomcat it works fine. Servlet html that referenced image urls on apache caused apache to die. -- Hi. I have the same problem as you. Tomcat4.0 and mod_webapp with SSL it seems to be a taboo topic. There isn't any information.

RE: Off Topic: Free J2EE IDE: Which one?

2002-03-20 Thread camccuk
--- Chris Pheby [EMAIL PROTECTED] wrote: Can you give any more explicit instructions for how to do this?? It would be extremely useful! Chris, You might find the following useful: http://community.borland.com/article/0,1410,22057,00.html These are instructions to set up JBuilder with

RE: NEWBIE: Passing object from Servlet to JSP with session?

2002-03-20 Thread Ernst Bekker
Thank you very very very much everyone who contributed, you are my heros. All that was missing was that one freak'n import page directive. I have been batteling with this for almost two days now, RTFMing till it came out my ears. -- You have to put into your JSP: %@ page import =

RE: Off Topic: Free J2EE IDE: Which one?

2002-03-20 Thread Gregor Kovaè
Hi! Here: put parameters to java: -Xint -Xdebug -Xnoagent -Xrunjdwp:transport=dt_socket,server=y,address=12999,suspend=n in your tomcat startup script. Start tomcat first. Start NetBeans, go to Debug Attach menu. Select JDPA debugging, your hostname and 12999 for port. Click OK. :) You should

RE: bug JDK 1.3

2002-03-20 Thread Randy Layman
You need to pass the flag -Xrs to the Sun implementations on startup. For Tomcat 3.3 this means setting the environment variable TOMCAT_OPTS to -Xrs. Randy -Original Message- From: vmfa [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 19, 2002 1:51 PM To: [EMAIL

RE: problems connecting to MS Access when Tomca3.2 runs as service

2002-03-20 Thread Randy Layman
The cause of your error message is that you have the file open (probably in Access) and the System Account is trying to read the file. The JET engine doesn't allow this. Your more significant and potentially more dangerous problem is that you are using the JDBC-ODBC bridge.

RE: Tomcat 3.2.1, 3.2.3, 3.2.4a

2002-03-20 Thread Randy Layman
The Tomcat 3.2 series had a number of issues with indirect loading of classes - the servlet or class would call one of Sun's classes to load a class (like JNDI). The problem was that the web app's class loader wasn't visible to the system classes. In Tomcat 3.2 you can put all your

RE: RE: newbie jsp question

2002-03-20 Thread Randy Layman
From the Javadocs for java.lang.VerifyError (great source of information, by the way): Thrown when the verifier detects that a class file, though well formed, contains some sort of internal inconsistency or security problem. So I would say that somehow your JDBC drivers are corrupt. I have

Ang: RE: RE: newbie jsp question

2002-03-20 Thread Magnus Jansson
Thanks Ill do that [EMAIL PROTECTED] 2002-03-20 12:49:52 From the Javadocs for java.lang.VerifyError (great source of information, by the way): Thrown when the verifier detects that a class file, though well formed, contains some sort of internal inconsistency or security problem. So I

tomcat 4.0.3 configuration

2002-03-20 Thread Yuval Levav
Hi, In my app I use a URL /xxx/servlet/YYY.txt. As you can see, YYY is not a servlet. In web.xml I added a servlet mapping of *.txt to a certain servlet. In tomcat 3 the mapping worked, but tomcat 4 sees YYY as a servlet and tries to activate it. How can I

automatic loading..

2002-03-20 Thread Shashank
HI ! I deployed new application PetStore (my own) on tomact. but whenever i recompile and put new files in the application folder..correctly..the server doesn't reloads the servlet automatically. Everytime I have to restart the serever...time consuming and frustrating..as current;y am on

Re: Problem reloading server.xml without restarting TC

2002-03-20 Thread Jean-Luc BEAUDET
Khurram Munir a Ýcrit : Can Tomcat reload server.xml after editing without restarting. I m adding datasource entry in server.xml programmatically and wants that my application should use that recently added datasource without restarting tomcat i m adding that in application context

extends JDBCRealm

2002-03-20 Thread Günter Kukies
Hello, I want to write a new MyRealm class that extend from JDBCRealm. The new class should do a BASE64 password protection. The compilation of the class was sucessfull. Where should I place that class and what entries do I need in the server.xml. Günter -- To unsubscribe: mailto:[EMAIL

Re: automatic loading..

2002-03-20 Thread Jean-Luc BEAUDET
Shashank a écrit : HI ! I deployed new application PetStore (my own) on tomact. but whenever i recompile and put new files in the application folder..correctly..the server doesn't reloads the servlet automatically. Everytime I have to restart the serever...time consuming and

RE: Where's my fish? How do I go fishing? (Tomcat 4.0)

2002-03-20 Thread Cox, Charlie
I am using 4.0.1, so its possible that something may have changed, but see intermixed. -Original Message- From: JavaJosh [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 19, 2002 4:08 PM To: [EMAIL PROTECTED] Subject: Where's my fish? How do I go fishing? (Tomcat 4.0) Hello,

RE: Tomcat 3.2.1, 3.2.3, 3.2.4a

2002-03-20 Thread Larry Isaacs
Hi Randy, Thanks for you help with answers. I think the bug with not allowing classes to load in the webapp classloader is a bug in Tomcat 4.0.2 and 4.0.3, and is fixed in 4.0.4-b1. Tomcat 3.3.x doesn't restrict any jars from being loaded in the webapp classloader. However, because Tomcat

RE: automatic loading..

2002-03-20 Thread Yuval Levav
In server.xml, set parameter reloadable to true in your context. -Original Message- From: Shashank [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 20, 2002 2:57 PM To: Tomcat Users List Subject: automatic loading.. HI ! I deployed new application PetStore (my own) on tomact. but

Logout Failure - Tomcat 4.0

2002-03-20 Thread Karthik Gopal
Hi, I have simple application, which has a logout feature in it's pages. The logout servlet gets the session object from request, and passes the session id to the CtrSessionEnd. This class has a list of active sessions, it goes through the list checking if the session id sent is equal to the

Upload response time

2002-03-20 Thread Zsolt Koppany
Hi, I use the com.oreilly.servlet.MultipartRequest class and tomcat-4.0.3. When I terminate a Form to start upload, the screen doesn't show any changes until the file (that can be large) has been uploaded. Is that possible to give the user some feedback that the upload has been started? --

multilple tomcat instances

2002-03-20 Thread Chris Ruegger
I need to run multiple tomcat instances on a single machine each on a different port. Is there some documentation out there that explains how to configure this? Thanks!

Re: automatic loading..

2002-03-20 Thread James Williamson
-- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles with the list: mailto:[EMAIL PROTECTED] Well the best way for yu is just to install the manager features. That's exactly what for it was made. Hope this help. Jean-Luc B :O)

AW: multilple tomcat instances

2002-03-20 Thread Ralph Einfeldt
The attached document was provided by Robert Walther [[EMAIL PROTECTED]] some day ago. (March 15th) -Ursprüngliche Nachricht- Von: Chris Ruegger [mailto:[EMAIL PROTECTED]] Gesendet: Mittwoch, 20. März 2002 14:31 An: Tomcat Users List Betreff: multilple tomcat instances I need

RE: Tomact + apache + warp (mod_webapp) + SSL

2002-03-20 Thread Anthony Eden
I can say that it works for the default client (i.e. not using virtual servers) as I have it running this way right now with Tomcat 4.0.1 on Linux RedHat 6.1. I followed the instructions for building mod_webapp on RedHat (which was slightly complicated because I was missing a couple required

Re: multilple tomcat instances

2002-03-20 Thread Jean-Luc BEAUDET
Chris Ruegger a Ýcrit : I need to run multiple tomcat instances on a single machine each on a different port. Is there some documentation out there that explains how to configure this? Thanks! Well. The basic document give some interresting clues for it. But i give yu some informations i

mod_webapp not loading servlets or jsp

2002-03-20 Thread matt
I'm running Apache 1.3.23 and Tomcat 4.0.3. I (apparently) set up mod_webapp successfully, but jsps and servlet still don't seem to work correctly over it. For example, http://localhost:8080/examples/jsp/numguess.jsp works fine. http://localhost:8080/examples/servlet/HelloWorldServlet works

RE: Upload file to email as attachment

2002-03-20 Thread Al Tingley
I haven't used jspSmartUpload, but you can certainly avoid writing then reading a file by using a ByteArrayOutputStream; write the uploaded file (that's already in an in-memory buffer) to a ByteArrayOutputStream, then use that stream's toByteArray() method in the constructor of a

Re: Figuring out which Unix process is which

2002-03-20 Thread NIVET Rémi
Try /usr/ucb/ps auxww Rémi. le mar 19-03-2002 à 21:52, Yoav Shapira a écrit : Hi, We run multiple instance of tomcat using the same JAVA_HOME, so when we run a ps command (Solaris 2.8) we see a bunch of java processes, but can't tell which one is which instance of tomcat. Does anyone have

Re: Off Topic: Free J2EE IDE: Which one?

2002-03-20 Thread hanasaki
Let's start with; have you done the research on the web? - jpda - www.javasoft.com - reading the Tomcat Startup scripts - jpda attaching in netbeans - The docs and dubug menus Chris Pheby wrote: Can you give any more explicit instructions for how to do this?? It would be

RE: Struggling for one week please Help Help..................

2002-03-20 Thread jeff . guttadauro
I would suspect that your return boolean line in your defineCFDatabase method would be causing problems. Uma Munugala

RE: Struggling for one week please Help Help..................

2002-03-20 Thread Uma Munugala
Hi Jeff Actually in code I am returning boolean variable which either has true or false, Iam not literally saying return boolean. Thanks Uma -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 20, 2002 6:27 AM To: Tomcat Users List Subject:

IllegalAccessException when using Java in XSLT

2002-03-20 Thread Wout Neirynck
Hi all, I've written a servlet that generates HTML using XML/XSLT. The XSL pages are using extra parameters that are passed on by the servlet (the http request, the http response and the session). But when I want to access these objects from within the XSL file using the Java extension

Re: Figuring out which Unix process is which

2002-03-20 Thread camccuk
--- NIVET Rémi [EMAIL PROTECTED] wrote: Try /usr/ucb/ps auxww Rémi. As I was saying: this is fine until the process gets swapped out at which point ps reports the process as [java], no matter how many 'w's you specify - no one has been able to tell me a workaround for this. Thus, options

RE: Struggling for one week please Help Help..................

2002-03-20 Thread Uma Munugala
Hi Daniel I double checked that compiler, iam using jdk1.3 for compiling my source codee and tomcat uses jdk1.3. classes are located in /WEB-INF/classes. Thanks Uma -Original Message- From: Daniel Hinojosa [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 19, 2002 4:14 PM To:

AW: Figuring out which Unix process is which

2002-03-20 Thread Ralph Einfeldt
With lsof you can find out which processes listens on a given port. As each tomcat has a unique ip/port combination you can find the pid of the vm for a given tomcat with that. BTW: the way to use wget is better, as this catches all errors where there might be a process that simply doesn't

AW: J2EE and Tomcat

2002-03-20 Thread Ralph Einfeldt
As I see it, the spec is quit clear about that: 2.5.1 Generating Comments in Output to Client In order to generate comments that appear in the response output stream to the requesting client, the HTML and XML comment syntax is used, as follows: !-- comments ... -- These comments are treated as

Re: Log4j initialization problem

2002-03-20 Thread Sriram N
Hello, I don't have access to my computer right now, but here's roughly what I do to use log4J within my Servlet 2.3 API compliant webapps. 1. Create a properties file called log4j.properties 2. Place this in WEB-INF folder. 3. Write a ContextListener and in the contectInitialized method,

compile.classpath value?

2002-03-20 Thread Leila Lappin
In build.xml what should I set this value to be? thanks

AW: multilple tomcat instances

2002-03-20 Thread Ralphn
Hi Chris Try this: http://www.mail-archive.com/tomcat-user@jakarta.apache.org/msg43912.html and see the running.txt under /webapps/tomcat-doc HTH Greetinx Ralph -Ursprüngliche Nachricht- Von: Chris Ruegger [mailto:[EMAIL PROTECTED]] Gesendet: Mittwoch, 20. März 2002 14:31 An:

Multiple Tomcat 3.2.4 Instances

2002-03-20 Thread Robert Walther
Thank you to those who have commented on the attached document. Before I revise it fully, I have two questions to pose to the group. First, there was real distaste for my use of mod_rewrite in Apache to redirect base URLs to their appropriate VirtualHosts ajp worker. My goal was to redirect a

Re: mod_webapp not loading servlets or jsp

2002-03-20 Thread Rio Ronan
Hello Matt, I have the same problem with Apache 1.3.23 and Tomcat4.0.1 on NT4. But I had a result with a jsp, I follow the JSP Quick-Start Guide - Page 5 - A Simple JSP, from http://www.webmasterbase.com/article/305 This small example should give you an idea. Good Luck. Ron. I'm running

Re: extends JDBCRealm

2002-03-20 Thread Craig R. McClanahan
On Wed, 20 Mar 2002, Günter Kukies wrote: Date: Wed, 20 Mar 2002 14:06:00 +0100 From: Günter Kukies [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Subject: extends JDBCRealm Hello, I want to write a new MyRealm class that extend

Tab Characters in web.xml (Tomcat 4.0.3)

2002-03-20 Thread Jeff Larsen
I've been developing a web application in JBuilder using Tomcat 3.2 with great success. Now it's time for the real world. I'm deploying my app on Tomcat 4.0.3 on Solaris and I'm having problems with my web.xml. When Tomcat starts, it gives me the following error: 2002-03-20 10:47:48

Tomact Servlet Deploy Problem Help

2002-03-20 Thread Sanjay Bahal
I installed Tomcat4.01/NT the examples run- webapps/servlets. I am trying to deploy my example it does not run. I have directory structure /webapps/search/Web-inf/classes. Under /search I have my html file hello.htm- td VALIGN=TOP WIDTH=30%a href=/helloimg SRC=/images/execute.gif HSPACE=4

Multiple Tomcat 4.0.2 instances

2002-03-20 Thread Chris Ruegger
I should have been more specific earlier. I'm running Tomcat 4.0.2 and interested in setting up multiple instances on one machine. Any references greatly appreciated! -Chris -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles with the list:

Re: [Tomact Servlet Deploy Problem Help]

2002-03-20 Thread Law Kaikuo
Hi Sanjay Bahal, Maybe you should create a subdirectory under WEN-INF called classes and put you java class there. You need to specify the fully qualified pathe for your servlet class in the web.xml file and set the mapping. Use the map name in any request. Kaikuo Luo Sanjay Bahal [EMAIL

Re: [Tomact Servlet Deploy Problem Help]

2002-03-20 Thread Sanjay Bahal
Kaikuo Luo, Thanks. Check my mail- I am doing all that. Is the name WEN-INF case sensitive? Sanjay --- Law Kaikuo [EMAIL PROTECTED] wrote: Hi Sanjay Bahal, Maybe you should create a subdirectory under WEN-INF called classes and put you java class there. You need to specify the fully

RE: [Tomact Servlet Deploy Problem Help]

2002-03-20 Thread Lance Smith
Yes it must be ALL capital letters. -Original Message- From: Sanjay Bahal [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 20, 2002 11:14 AM To: Tomcat Users List Subject: Re: [Tomact Servlet Deploy Problem Help] Kaikuo Luo, Thanks. Check my mail- I am doing all that. Is the name

Upload file to email as attachment

2002-03-20 Thread Jason Webber
jspSmartUpload can be found at http://www.jspsmart.com -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles with the list: mailto:[EMAIL PROTECTED]

RE: Multiple Tomcat 4.0.2 instances

2002-03-20 Thread John Niven
-Original Message- From: Chris Ruegger [mailto:[EMAIL PROTECTED]] Sent: 20 March 2002 17:11 To: [EMAIL PROTECTED] Subject: Multiple Tomcat 4.0.2 instances I should have been more specific earlier. I'm running Tomcat 4.0.2 and interested in setting up multiple instances on one

Re: Multiple Tomcat 4.0.2 instances

2002-03-20 Thread Jean-Luc BEAUDET
Chris Ruegger a Ýcrit : I should have been more specific earlier. I'm running Tomcat 4.0.2 and interested in setting up multiple instances on one machine. Any references greatly appreciated! -Chris -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL

ssl and windows 2000

2002-03-20 Thread Mehmet Ugur Kuzu (LinkPlus)
Hi, Do you know a detailed description of how can i generate my ssl keys and setup Tomcat under windows 2000, sincerely Ugur

Re: Tab Characters in web.xml (Tomcat 4.0.3)

2002-03-20 Thread Emir Alikadic
On 3/20/2002 12:01 PM, Jeff Larsen wrote: I've been developing a web application in JBuilder using Tomcat 3.2 with great success. Now it's time for the real world. I'm deploying my app on Tomcat 4.0.3 on Solaris and I'm having problems with my web.xml. When Tomcat starts, it gives me the

RE: [Tomact Servlet Deploy Problem Help]

2002-03-20 Thread Sanjay Bahal
Thanks Lance. I made it all caps- That took me a step further. Note to Windows(NT) users- windows shows the name in mixed case in explorer- even though you may type it in caps if you look at properties and DOS-NAME it will show the actual name- uppercase in this case. --- I got an

mod_jk.log question

2002-03-20 Thread Cindy Ballreich
I'm using mod_jk with Tomcat 4.0.1 and Apache 1.3.19 on a Redhat 7.0 system. Looking at my mod_jk.log file, it appears that mod_jk is trying to map every request that comes to my server, regardless of whether it should be handled by Tomcat or Apache. This seems very inefficient to me and I'm

RE: TC 4 - URLRewrite :: repost

2002-03-20 Thread Reynir Hubner
hey guys, I got no replies.. so this is a repost of the same message from early this morning.. (hope someone will notice it this time.. ). Hi, I'm looking for the best way of writing a URLRewrite for tomcat that works similar to mod_rewrite in apache. Does anyone have an opinion on this

Re: Tomact + apache + warp (mod_webapp) + SSL

2002-03-20 Thread Gabriel López Millán
UPS¡¡. I have spoken with Pier Fumagalli (http://nagoya.apache.org/~pier/): Apache2.0/Tomcat4.0 with mod_webapp and SSL are not fully implemented. SSL attributes can't be retrieval from servlet :-( Anthony Eden wrote: I can say that it works for the default client (i.e. not using

RE: [Tomact Servlet Deploy Problem Help]

2002-03-20 Thread Sanjay Bahal
I took care of this last error- some malform in the web.xml. Now I am back to square 1- my server starts but when I execute it gives error: 1. http://localhost:8080/servlet/HelloWorld The requested resource (/servlet/HelloWorld) is not available. 2. /hello The requested resource (/hello) is not

Fwd: Host.java an unconnected gear?

2002-03-20 Thread Micael Padraig Og mac Grene
Never mind, figured out the Standard stuff. Thanks if you helped. Micael Date: Tue, 19 Mar 2002 15:13:55 -0800 To: [EMAIL PROTECTED] From: Micael Padraig Og mac Grene [EMAIL PROTECTED] Subject: Host.java an unconnected gear? How is the Host.java class used in Tomcat? It is never implemented

Load Balacing Apache-Tomcat

2002-03-20 Thread Chris Ruegger
We are using Apache as a front-end proxy to multiple tomcat instances running on back-end machines. We would like to get Apache to do simple round-robin load balancing to the Tomcat instances. Is there a module out there for Apache that would let us do this? Thanks -- To unsubscribe:

DataSources in Tomcat 4 / Windows XP

2002-03-20 Thread Martin Miranda
Hello Im having problems creating a DataSource in a StandAlone Tomcat 4.0.1 with Windows XP. The InitialContext find the DataSource but it cames null This is the Code: % InitialContext ctxinit = new InitialContext(); % %= ctxinit.lookup(java:/comp/env/jdbc/testDB) % NULL In

RE: Tomact + apache + warp (mod_webapp) + SSL

2002-03-20 Thread Anthony Eden
Ah...Apache 2.0...that is different. My setup is with Apache 1.3.9. Sincerely, Anthony Eden -Original Message- From: Gabriel López Millán [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 20, 2002 1:21 PM To: Tomcat Users List Subject: Re: Tomact + apache + warp (mod_webapp) +

mod_webapp.so functionality with apache ACLs (.htaccess)

2002-03-20 Thread Griffith, Patrick, CTR, AFPCA/OAA
I'm new to Tomcat (and most Java for that matter). I have Solaris 8 with Apache 1.3.22 and Tomcat 4.0.3. I've created the mod_webapp.so module and it appears to work for me - in the sense that I can get the example jsp code to run through my apache. However, I need to also use the exhisting

Re: TC 4 - URLRewrite :: repost

2002-03-20 Thread James Williamson
Hi Reynir, I had a look at doing this, from having a look at the code, the only thing you can do is a client side redirect (i.e. sending back a HTTP 302 to the redirected page). From what I gathered you've got to start going right up the food chain within Tomcat to do it internally, i.e.

AW: problems connecting to MS Access when Tomca3.2 runs as service

2002-03-20 Thread Reto Badertscher
Is there a native JDBC driver available for accessing an Access Database. Need to create and fill a Access Database on behalf of a user request? Reto -Ursprüngliche Nachricht- Von: Randy Layman [mailto:[EMAIL PROTECTED]] Gesendet: Mittwoch, 20. März 2002 12:36 An: 'Tomcat Users List'

JSP cookie + page reloading

2002-03-20 Thread Ming
Hi, In one of my JSP program, I'm using response to set cookie and forward to another page. But the new cookie cannot be recognized immediately until I refresh the page. Here is the senario: a logout.jsp which set cookie status=logout using response And then forward this page to a page called

Re: Tomcat 4.0.1 to 4.0.3 upgrade problem

2002-03-20 Thread Joel Sather
This is some more info about this problem. The error I get from the servlet is this: java.lang.NullPointerException at mnvu.MnvuPage.(Unknown Source) at mnvu.MnvuServlet.doGet(Unknown Source) at javax.servlet.http.HttpServlet.service(HttpServlet.java:740) at

Re: 403 errors for webdav PUT on TC 4.0.3

2002-03-20 Thread Marcia Perry
Hi Remy, Well, I wiped the egg off my face and saw the comment in $TOMCAT/ webapps/webdav/WEF-INF/web.xml to uncomment the entries that set readonly to false. That did the trick. Thx :) -- marcia Remy Maucherat wrote: Hi, I tried using the DAVExplorer webdav client app w/ Tomcat

tomcat3-3.3a-2 HELP

2002-03-20 Thread Huy K Dung
2002-03-20 14:19:40 - Http10Interceptor: SocketException reading request, ignored I saw that error in tomcar.log. Does anyone know what it is. My app doesn't run because tomcat doesn't load turbine library (jar) in WEB-INF/lib. I have tried to move all libraries (jars) into tomcat/lib/apps but

Re: DataSources in Tomcat 4 / Windows XP

2002-03-20 Thread Lev Assinovsky
Is Oracle driver (classes111.zip) visible to Tomcat. I had to modify (in Linux) catalina.sh script to add driver's path to the internal CLASSPATH used by catalina. Martin Miranda wrote: Hello Im having problems creating a DataSource in a StandAlone Tomcat 4.0.1 with Windows XP. The

Web-application not yet deployed

2002-03-20 Thread William Crook
I'm trying to configure tomcat 4.0.3 / apache 1.3 / red hat 7.1 and I'm getting this error when trying to hit /examples/ Here is a snip from my config file: HTTPD.CONF LoadModule webapp_module modules/mod_webapp-1.0-eapi.so AddModule mod_webapp.c VirtualHost * ServerName

RE: [Tomact Servlet Deploy Problem Help]

2002-03-20 Thread Cox, Charlie
-Original Message- From: Sanjay Bahal [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 20, 2002 1:28 PM To: Tomcat Users List Subject: RE: [Tomact Servlet Deploy Problem Help] I took care of this last error- some malform in the web.xml. Now I am back to square 1- my server

Re: Log4j initialization problem

2002-03-20 Thread James Adams
Hello, I have tried the ServletContextListener approach suggested below by Sriram (thanks !) and I am still having the same problem, i.e. I get the log file (specified in my log4j.properties file) created under whatever directory I am at when I issue the tomcat start command. It appears that

RE: Web-application not yet deployed

2002-03-20 Thread John Wadkin
I've only seen this error when: I've tried starting Apache before TomCat TomCat hasn't started - Apache can't communicate with it I've tried starting Apache too soon after starting TomCat Hope it helps! John -Original Message- From: William Crook [mailto:[EMAIL PROTECTED]] Sent: 20

RE: JSP cookie + page reloading

2002-03-20 Thread Robert Nocera
If you redirect to the page instead of forward, your problem would be solved. I think putting the code to set the cookie in the main JSP page would work also. Robert Nocera New England Open Solutions www.neosllc.com You supply the Vision. We will do the rest.   -Original Message-

Re: TC 4 - URLRewrite :: repost

2002-03-20 Thread James Williamson
Hi Reynir, I looked into this quite deeply, it seems like you can't get a handle on the url requested (to change) unless you go very deep into Tomcat's internals. As it happens I'm testing a modified mod_webapp which appears to work quite nicely letting you use Apache's rewrite mechanism (which

reloadable doesn't work with warpconnector

2002-03-20 Thread Mike Johnson
Hi everyone, I'm new to Tomcat, so this could be something that I've done wrong... I've noticed some strange behavior with the warpconnector. For example, if I use the manager application to shutdown the root path (manager/stop?path=/) then the pages are no longer served by the *standalone*

  1   2   >