Exception message

2001-06-18 Thread cheong voonleong
hi, I'm new user of tomcat web server. I'm able to setup the web server and view the default Tomcat home page but sometimes I got an exception message displayed on my dos screen when I try to run the my test program. Is my program caused this exception or the setup ? Thanks Here is the

Re: URGENT: Problem's in configuring Tomcat 3.2.1 with Apache 1.3.20

2001-06-18 Thread Daniel Koo
no idea about your initial problem, but in order to access the Login servlet at http://localhost/MyApp/Login you need to change the url-pattern to just Login (assuming the context is called MyApp).. well you don't _need_ to, since there are other ways of accessing the servlet.. On Thu, Jun 01,

RE: URGENT: Problem's in configuring Tomcat 3.2.1 with Apache 1.3.20

2001-06-18 Thread Bhootnath Singh
I am sorry for having written the wrong servlet mapping the correct one is : servlet servlet-nameLogin/servlet-name servlet-classcom.base.login.web.Login/servlet-class /servlet servlet-mapping servlet-nameLogin/servlet-name

RE: SSL handshake failure URGENT

2001-06-18 Thread Jean-Etienne G.
Of sure, there it is. Could you retry with openssl s_client in full debug mode ? - Henri Gomez ___[_] EMAIL : [EMAIL PROTECTED](. .) PGP KEY : 697ECEDD...oOOo..(_)..oOOo... PGP Fingerprint : 9DF8 1EA8 ED53 2F39 DC9B 904A 364F 80E6 -Original

mod_webapp.so needed

2001-06-18 Thread Jari Salmela
Hi, Can somebody tell me where I can get mod_webapp.so or perhaps send it to me? I need it asap. thanks -jari

Help Configuring TOMCAT 4.0.5 BETA

2001-06-18 Thread BA HIMA
I couldn't install tomcat4.0.5 beta with jdk1.4 on REDHAT 6.2. I get following errors. I tried both SOURCE/BINARY it gives the same error. I will be really thankfull to u if u could tell me where did I went wrong or whats needed exactly to install tomcat4.0.5 with jdk1.4. REGARDS Himanshu

Logging

2001-06-18 Thread Roland Carlsson
Hi! I wonder if it's possible to put a servlet or bean to pre-process all or some of the requests that a tomcat-server will serv? The use I'm thinking of is customized logging to be able to track sessions much closer than the apache common log does without have put logging-code on every page

Tomcat.log

2001-06-18 Thread Rajeshwar Rao.V
Hi all, when start Tomcat, on the console I came across mthis message. *Starting tomcat. Check logs/tomcat.log for error messages* But in the Tomcat environment, i did not find file called tomcat.log. where it is going? please clarify -raj-

RE: SSL handshake failure URGENT

2001-06-18 Thread GOMEZ Henri
Could you try the server cert on apache/SSL or Apache-mod_ssl and see if it works ? - Henri Gomez ___[_] EMAIL : [EMAIL PROTECTED](. .) PGP KEY : 697ECEDD...oOOo..(_)..oOOo... PGP Fingerprint : 9DF8 1EA8 ED53 2F39 DC9B 904A 364F 80E6

RE: Logging

2001-06-18 Thread Christopher Kirk
Best Approach: In the Servlet 2.3 spec (So Tomcat 4.0) you could use Filters.. a Filter may be run before or after a Servlet.. modifying what it sees, or what it returns. - Chris. -Original Message- From: Roland Carlsson [mailto:[EMAIL PROTECTED]] Sent: 18 June 2001 9:45 To:

Re: Tomcat.log

2001-06-18 Thread unplug
edit server.xml and read the Logging paragraph. It will tell you how to do it. Rajeshwar Rao.V wrote: Hi all, when start Tomcat, on the console I came across mthis message. *Starting tomcat. Check logs/tomcat.log for error messages* But in the Tomcat environment, i did not find

RE: Tomcat.log

2001-06-18 Thread David DELGRANCHE
This file is under the logs only if there are problems during start. If this file does not exist, there is no error! -Message d'origine- De: Rajeshwar Rao.V [SMTP:[EMAIL PROTECTED]] Date: lundi 18 juin 2001 10:58 A: '[EMAIL PROTECTED]' Objet: Tomcat.log Hi all, when

Re: Logging

2001-06-18 Thread Sam Newman
Tomcat 4 supports filters, which may do exactly what you want. They are defined on the 2.3 spec IIRC. Basically, its a bit of code that gets accessed before the requested page. There was an article about the use of filters i think either on javaworld or servlets.com. Assuming you want a 3.2

RE: Tomcat.log

2001-06-18 Thread Rajeshwar Rao.V
thanks david iso i have no probs with TC -Original Message- From: David DELGRANCHE [mailto:[EMAIL PROTECTED]] Sent: Monday, June 18, 2001 3:37 PM To: '[EMAIL PROTECTED]' Subject: RE: Tomcat.log This file is under the logs only if there are problems during start. If this file

Re: Logging

2001-06-18 Thread Roland Carlsson
Well, tomcat are only in 3.2.2 and I'm looking at what I can do today. Do I have any options to to loggningcode into every page?? Thanks in advance Roland Carlsson - Original Message - From: Christopher Kirk [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, June 18, 2001 11:04 AM

Re: Tomcat.log

2001-06-18 Thread Sam Newman
Or it errored before the log got createdbut yes, its just letting you know where the log will be if you get errors. On a related note, does anyone know of a good tail program for M$ which doesn't get defeated by win32 file locking? I'd like to be able to keep an eye on my tomcat logs without

RE: SSL handshake failure URGENT

2001-06-18 Thread Jean-Etienne G.
I would try to do that following a document you wrote about SSL via apache, but I was a little lost in your indication (for example some Jk... directives are not recognized, [JkExtractSSL, ...] ) and I don't have a mod_jk.so module to load) Could you try the server cert on apache/SSL or

Formatting Apache+Tomcat Java stack output errors: how?

2001-06-18 Thread Michael 'Mickey' Sattler
I apologize if this is covered somewhere, but I've spent the last few hours searching the Apache, Tomcat, and Java realms without success. There's just *too much* stuff out there :-| I want to tweak the Java stack output. Specifically, I'd like to (at a minimum) make the whole damn thing get

url redirection and tomcat

2001-06-18 Thread Carlos Ferreira
hi all, i'm looking for information on url redirection and it's effects on tomcat: i'm using Apache 1.3.20 / PHP 4.0.5 / Tomcat 3.2.1 on WinMe what i want to do is to split an url like http://www.myhost.com/product/XXX/.jsp be split up into http://www.myhost.com/product/.jsp;

Re: Formatting Apache+Tomcat Java stack output errors: how?

2001-06-18 Thread Sam Newman
Well, IIRC the stack outputs simply get sent to Stderr (e.g. when you do excp.printStackTrace()). You could make stderr point to a different stream (can do it via the System object) and then have that output stream do the formatting. The exception reporting provided by Alphaworks JLog can

Re: mod_webapp.so needed

2001-06-18 Thread james
It would help if you specified for which platform. Hi, Can somebody tell me where I can get mod_webapp.so or perhaps send it to me? I need it asap. thanks -jari

Re: Default web.xml

2001-06-18 Thread Rob Agar
we also found this to be the case when setting up mime types. I think it's a 'feature' - if you create a new context, only the local web.xml has any effect. Rob pretty - Original Message - From: Timothy Shadel [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, June 15, 2001 8:07 PM

Problem with Postgresql JDBC driver

2001-06-18 Thread Ryszard Lach
Hi! I have serious problem with JDBC driver for postgresql. I'm using tomcat 3.2.2 with jdk1.3.1 (I've tried 1.2.2 too). I've tried to put jdbc7.0-1.2.jar into: $TOMCAT_HOME/lib $TOMCAT_HOME/webapp/my_app/WEB-INF/lib and unpacked jdbc7.0-1.2.jar into $TOMCAT_HOME/classes

socket write and Connection reset by peer

2001-06-18 Thread Venkatesh T
Hi I am getting frequently these errors. I am using some flash and gif files in my jsp page. For each and every image i am using i am getting the following errors. But the pages displaying properly. Ctx( ): IOException in: R( + /ssp/jsp/righttop.swf + null) socket write error

Vs: mod_webapp.so needed

2001-06-18 Thread Jari Salmela
SorryLinux 7.1, Apache 1.3.19, Tomcat 4b5 - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, June 18, 2001 12:54 PM Subject: Re: mod_webapp.so needed It would help if you specified for which platform. Hi, Can somebody tell me where I can

Re: Problem with Postgresql JDBC driver

2001-06-18 Thread Tim Stoop
Ryszard Lach wrote: and I still receive an error (included at bottom of the message) while calling Class.forName(postgresql.Driver) in a .jsp file located in .../webapp/my_app directory. Try not using the DriverManager, like so: Driver drv = org.postgresql.Driver; Connection conn =

Re: Vs: mod_webapp.so needed

2001-06-18 Thread james
I've got it compiled for Redhat 6.2, although that's a 2.2 kernel and Linux 7.1 (I assumed we're talking Redhat) is 2.4. If you want to give it a try I'll upload it to my server? James SorryLinux 7.1, Apache 1.3.19, Tomcat 4b5 - Original Message - From: [EMAIL

RE: What are EJB

2001-06-18 Thread Reynir Hübner
What do you mean by include EJBs in Tomcat4 ? It´s possible to use EJBs with tomcat in current verison,to do so you can download Jboss (www.jboss.org) and you have an EJB container... bye -r -Original Message- From: Luba Powell [mailto:[EMAIL PROTECTED]] Sent: Sunday, June 17, 2001

Re: Problem with Postgresql JDBC driver

2001-06-18 Thread Ryszard Lach
On Mon, Jun 18, 2001 at 12:52:56PM +0200, Tim Stoop wrote: Ryszard Lach wrote: and I still receive an error (included at bottom of the message) while calling Class.forName("postgresql.Driver") in a .jsp file located in .../webapp/my_app directory. Try not using the DriverManager,

RE: Exception message

2001-06-18 Thread Michael Wentzel
I'm new user of tomcat web server. I'm able to setup the web server and view the default Tomcat home page but sometimes I got an exception message displayed on my dos screen when I try to run the my test program. Is my program caused this exception or the setup ? Thanks Here is

RE: Tomcat starting problem

2001-06-18 Thread Randy Layman
The problem is that the JAVA_HOME environment variable is not set correctly - it has an equal sign in it (that's why its saying usr/java1.2=/bin/java: not found). It also looks like the classpath has the same issue. I would suggest looking though the environment variables and resetting

RE: TomCat with win2000 and IIS....help...urgent

2001-06-18 Thread Randy Layman
The problem seems to be in your Tomcat configuration - the isapi redirect log file indicates that the 404 error is coming from Tomcat. Check your tomcat logs or console for messages about the request and where it was trying to go. Randy -Original Message- From:

Vs: Vs: mod_webapp.so needed

2001-06-18 Thread Jari Salmela
why notI can´t lose anything...:)thanks! and yes, we are talking about RH. Will you give me address where I can download it? -jari - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, June 18, 2001 1:46 PM Subject: Re: Vs: mod_webapp.so needed

RE: Problem starting NT service

2001-06-18 Thread Randy Layman
Check the jvm.stdout/.stderr files, but a common cause of this is spaces in the path to the JVM or Tomcat Home. -Original Message- From: Barney Dalgarno [mailto:[EMAIL PROTECTED]] Sent: Sunday, June 17, 2001 2:48 AM To: [EMAIL PROTECTED] Subject: Problem starting NT

RE: Getting file information

2001-06-18 Thread Michael Wentzel
Greetings to all, newbie here. Would like to ask if anyone knows how to get the file information such as the file name(not the entire path) of the running JSP file? Let's say i were to run confirmation.jsp, how do i get the filename to a string when confirmation.jsp is running? I tried

RE: access log for Tomcat

2001-06-18 Thread Randy Layman
There isn't a module for Tomcat that does this that I know of (and nothing built into Tomcat, regardless of what Luba says), although it should be fairly easy to do - you need to write a RequestInterceptor that just logs, not intercepts, the requests. Randy -Original

Re: Vs: Vs: mod_webapp.so needed

2001-06-18 Thread james
Give this a whirl: http://www.nameonthe.net/techcorn/tomcat/mod_webapp.so The next part is actually configuring it?! James why notI can´t lose anything...:)thanks! and yes, we are talking about RH. Will you give me address where I can download it? -jari - Original Message

request and jsp:include

2001-06-18 Thread Antoni Reus
Hi, first of all I would like to excuse for my poor english. I'm using tomcat 3.2.2 in a Win NT 4 I'm trying to do some kinda printing template, so calling de template ( imprimir.jsp ) with a parameter for the page to show it whould display it in a printer friendly way. In imprimir.jsp is

RE: problem in getHeader()

2001-06-18 Thread Randy Layman
Uhh, headers don't work that way. You send headers to help the browser and network know what they are working with. The browser sets the headers for the new request to help you and the network deal with the request. One set of headers has no bearing on any others. Randy

OutOfMem

2001-06-18 Thread Shai Deljo
Does anyone know the reason for this msg : 2001-06-18 07:47:31.729029 2001-06-18 07:47:31 - ThreadPool: Caught exception executing org.apache.tomcat.service.TcpWorkerThread@47 8a2d, terminating thread - java.lang.OutOfMemoryError: unable to create new native thread 2001-06-18 07:47:31.729051

Vs: Vs: Vs: mod_webapp.so needed

2001-06-18 Thread Jari Salmela
yesi know.i have bad feeling that it´s not going to be easy, because i have put together Apache 1.3.19, Tomcat 4b5 and Chilisoft ASP 3.6.and of course these don´t want work together ( or mayby it´s better say that ASP don´t want work ).btw have anyone try this before? -jari

Re: Vs: Vs: Vs: mod_webapp.so needed

2001-06-18 Thread james
I wasn't actually thinking of that, the documentation is a touch sketchy, it doesn't say your webapp directives *MUST* appear within a VirtualHost directive, etc, etc, fortunately it throws loads of debug messages to STDERR (error_log). Theoretically, I can't see why you should encounter

Session with IE

2001-06-18 Thread Jose Luis Rodriguez
My developed employment is IIS 4.0, Tomcat 3.2.2 under Windows Nt 4.0. I have a problem when I run mi application with IE 5.5, this lose the session inmediatly that I run another time. With Netscape Communicator that's Ok. My application is in: webapps/jsp_jsp/inicio.html, procesar_inicio.jsp,

error 500

2001-06-18 Thread Karsa . Keith
Below is the error we are getting when trying to deploy java server pages. Can you look into it or pass it along to someone who is familiar with AppDev 2.0 and JSPs? We would appreciate some feedback as to what might be causing this error. also, do we need SAS v8.2 to run Appdev studio 2.0?

Don't get me wrong

2001-06-18 Thread lists
Don't get me wrong, this is a nice list and all, but attempts to unsubscribe (by emailing to [EMAIL PROTECTED] ) have been unsuccessful. Anyone know of there another way? Christopher Lambrou, CGL Computer Services, Inc. Empire State Building, PMB 16J Suite 3304 New York, NY 10118 Tel:

Re: Default web.xml

2001-06-18 Thread Brett M. Bergquist
In tomcat 3.2.x, the web.xml in the conf directory is not used at all. I fact, you can completely remove it with no ill effects. Internally, Tomcat 3.2.x compiles in some defaults; mime mappings, the JSP servlet mapping, etc. In your application's web.xml specify anything that you need too

Vs: Vs: Vs: Vs: mod_webapp.so needed

2001-06-18 Thread Jari Salmela
Yes, Apache handle this, but I have read Chilisoft´s documentation and it says it works only Apache 1.3.14 or older. And Chilisoft and Tomcat won´t work together, but I had tomcat 3.2.1 and chilisoft asp 3.5.2 together and working. I haven´t try this mod_webapp.so yet, and I think testing is

RE: Advice: SSLifying a Tomcat+IIS setup

2001-06-18 Thread Hughes, Tim
Hello, I first setup Tomcat as a standalone running as an NT service. I have also now plugged Tomcat into an IIS server so that I can either use Tomcat as a standalone or query IIS which then forwards the request to Tomcat. Everything works hunkydory and I think Tomcat is great. So clean! I now

RE: access log for Tomcat

2001-06-18 Thread David Rosenstark
I assume that this means that I have to do it all myself in terms of setting up different options to log? -Original Message- From: Randy Layman [mailto:[EMAIL PROTECTED]] Sent: Monday, June 18, 2001 1:09 PM To: [EMAIL PROTECTED] Subject: RE: access log for Tomcat There

Re: What are EJB

2001-06-18 Thread Sam Newman
The only real similarity between EJB's and normal JavaBeans is that they are both based on component models. EJB's provide a java representation of some data in a database - e.g. 1 EJB will equal 1 row in the table, 1 EJB class is tied to one table. XML is used to tie an EJB and its data to a

I wonder what is this?

2001-06-18 Thread Rajeshwar Rao.V
Error: 500 Location: /myCon/servlets/LogOn.htm Internal Servlet Error: java.lang.IllegalStateException: Can't happen - classname is null, who added this ? at org.apache.tomcat.core.ServletWrapper.loadServlet(ServletWrapper.java:261) at

Tomcat-Apache configuration

2001-06-18 Thread Shicheng TIAN(CMS)
Hello there, We have installed Tomcat 4.0 on our PC running Win2000; Tomcat works fine itself. We have the following two queries and would like to get advice from the list: 1. How to configure Tomcat so that it can work together with the Web server running at the same PC, which is Apache 1.3,

JSP mapping

2001-06-18 Thread Eitan Ben Noach
HI, I want to map JSPs called by browser at the http server root, like http://victoria.xx.yy/zz.jsp to be handled by JSP file that is located some were else then the default c:\jakarta-tomcat-3.2.3\webapps\root\zz.jsp, for example by c:\winnt\zz.jsp. I've succeeded on configuring Tomcat to

newbie: Installing Servlets

2001-06-18 Thread LeRoi
Hello! Now that I have Tomcat up and running, it's time that I starting doing some real work. Following a simple example in the book I'm using it says that servlets are installed in the subdirectory webapps\WEB-INF\servlets. I put my class there (under examples directory of Tomcat) and shut

RE: Tomcat-Apache configuration

2001-06-18 Thread David DELGRANCHE
Just read the documentation on Tomcat all these things are explained! -Message d'origine- De: Shicheng TIAN(CMS) [SMTP:[EMAIL PROTECTED]] Date: lundi 18 juin 2001 15:34 A: [EMAIL PROTECTED] Objet: Tomcat-Apache configuration Hello there, We have installed Tomcat 4.0 on our

Re: JSP mapping

2001-06-18 Thread Dmitri Colebatch
Eitan, Are you running standalone or with a web server? Assuming you're running standalone, and that there's not much else you're using tomcat for, all you need to do is remove the /MyJspDirectory from the context path and it should work fine. cheesr dim Eitan Ben Noach wrote: HI, I

Re: Problem with Postgresql JDBC driver

2001-06-18 Thread Jeff Waugh
Sorry, I hadn't read your error message closely enough. 'No suitable driver' usually means a problem with the database URL to which you are trying to connect. That should look something like: db = DriverManager.getConnection("jdbc:postgresql://hostname/dbname", "username", "password"); Try

RE: JSP mapping

2001-06-18 Thread Eitan Ben Noach
Thanks dim, I'm running Tomcat 3.2.2 with Apache 1.3 as HTTP server. No meter what I've tried to do on the tomact-apache.conf and server.xml files, Tomcat will not let me map root JSP files to a directory other then c:\jakarta-tomcat-3.2.3\webapps\root Is there any doc that defines the exact

Finding the XML parser in Tomcat

2001-06-18 Thread Frank Lawlor
In my VisualAge Java development environemnt (jdk 1.2.2) I can say, for example, Parser parser = ParserFactory.makeParser(org.apache.xerces.parsers.SAXParser); but when I deploy to a standalone Tomcat environment, I get a class not found on the parser name, even tho I put the jar in Tomcat's

Re: JSP mapping

2001-06-18 Thread Dmitri Colebatch
Eitan, Yep - editing tomcat-apache.conf by hand is a bad idea as it is generated by tomcat every time it starts, which would explain why your changes disappear (o: I'm assuming that in your server.xml you have a line Context path= docbase=webapps/ROOT or something similar? If you change the

RE: access log for Tomcat

2001-06-18 Thread Randy Layman
You would have to write the Java code yourself to implement this new RequestInterceptor. You could hard code all of the parameters for your logging into the code, or you could make them parameters from the server.xml file (which would be better), but this is a you do it all yourself

Re: OutOfMem

2001-06-18 Thread Luba Powell
2 possibilities here. you ran out of memory in which case decrease number of connectors in conf/server.xml for the context Or there is a buglet in their ThreadPool program. I doubt this, primarily because there haven't been many postings on this subject r/luba - Original Message -

Re: Tomcat-Apache configuration

2001-06-18 Thread Sam Newman
Read the mod_jk howto included with the documentation. Its fairly straightforward. If you have problems after following the docs, post to the list - loads of us have done this so there will be plenty of people around who can help. sam - Original Message - From: Shicheng TIAN(CMS) [EMAIL

Re: socket write and Connection reset by peer

2001-06-18 Thread Luba Powell
Network programmers! I also frequently get code=10053 error although not w/Tomcat. I learned to work around it, but would be nice to know the origins of this code. thanks, luba - Original Message - From: Venkatesh T [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, June 18, 2001

Help on: ThreadPool: pool exhausted with 100 threads

2001-06-18 Thread Jayson Yu
hi, I was wondering if anybody can provide me some leads on how to deal with this problem... I have a servlet that queries a database and churns out (in response) a data populated html, however after some time and several hits on the servlet, I get the Tomcat error that ThreadPool: pool

Re: Problem with Postgresql JDBC driver

2001-06-18 Thread Luba Powell
Try this: Driver driver = (Driver) Class.forName("driver URL").newInstance(); if (driver == null) { System.out.println("no driver found"); } - Original Message - From: "Ryszard Lach" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, June 18, 2001 6:40 AM Subject: Problem

Re: Problem with Postgresql JDBC driver

2001-06-18 Thread Ryszard Lach
On Mon, Jun 18, 2001 at 10:05:16AM -0400, Jeff Waugh wrote: Sorry, I hadn't read your error message closely enough. 'No suitable driver' usually means a problem with the database URL to which you are trying to connect. That should look something like: db =

Re: Help on: ThreadPool: pool exhausted with 100 threads

2001-06-18 Thread Luba Powell
Ooh! Shai is getting similar error. Although in his case he runs out of memory. But both of your errors occur in their ThreadPool program. I wonder if threads are not being returned to the pool, in which case you would need to report it as a bug. Json, how many connectors did you configure for

Re: IllegalAccessError when run from Tomcat

2001-06-18 Thread sappling
After further investigation this seems to be something specific to the 4.0b5 version of Tomcat. It does not occur in 3.3 milestone 3 or 3.2. I think this may indicate a classloader problem. I will investigate further and post something to the bug database. Thanks for your suggestions. -

Re: Problem with Postgresql JDBC driver

2001-06-18 Thread Luba Powell
Ryszad: Please let me know if this works for you: Driver driver = (Driver) Class.forName("driver URL").newInstance(); This part of statement that you already had in your program: (Driver) Class.forName("driver URL") will load .class file into memory. It is .newInstance() that

installing tomkat under linux: please help!

2001-06-18 Thread rino . mail
I have RedHat 7.1 I download file jakarta-tomcat-3.2.1.tar which create the directory: /home/rino/tomkat/jakarta-tomcat-3.2.1 I do: export JAVA_HOME=... export TOMCAT_HOME=/home/rino/tomkat/jakarta-tomcat-3.2.1 export CATALINA_HOME=/home/rino/tomkat/jakarta-tomcat-3.2.1 cd

Re: installing tomkat under linux: please help!

2001-06-18 Thread Luba Powell
What are error messages? Can look in the log? - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, June 18, 2001 11:08 AM Subject: installing tomkat under linux: please help! I have RedHat 7.1 I download file jakarta-tomcat-3.2.1.tar which create the

RE: SSL handshake failure URGENT

2001-06-18 Thread Tim O'Neil
At 02:41 AM 6/18/2001, you wrote: I would try to do that following a document you wrote about SSL via apache, but I was a little lost in your indication (for example some Jk... directives are not recognized, [JkExtractSSL, ...] ) and I don't have a mod_jk.so module to load) I know that a real

Re: What are EJB

2001-06-18 Thread Luba Powell
but a real mess of a database You are right here. Because of it I stopped using Entity beans all together... - Original Message - From: Sam Newman [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, June 18, 2001 9:26 AM Subject: Re: What are EJB The only real similarity

RE: SSL handshake failure URGENT

2001-06-18 Thread GOMEZ Henri
If you use Apache-mod_ssl (apache with mod_ssl), you didn't need to do anything in mod_jk.conf since it's default config is for Apache + mod_ssl. PS: Did you have a Linux boxes, I've packaged easy to use RPM which will let you install apache-mod_ssl, tomcat and mod_jk in less than 30

nt-service

2001-06-18 Thread Andrew V. Zhdanov
Hello tomcat-user, Please, could you help me: i've made everything as described in NT-Service-howto.html but i've got such results: E:\downloads\jakarta\tomcat3.2.2net start tomcat System error 1311 has occurred. There are currently no logon servers available to service the logon

Re: Problem with Postgresql JDBC driver

2001-06-18 Thread David Wall
Rather a postgresq question. I don't know what the error was, but you want to make sure the postgresql.jar file is in your webapp/my_app/WEB-INF/lib directory. And if you are using a security manager, you need to add the shutdown-hooks permission. David

Re: Problem with Postgresql JDBC driver

2001-06-18 Thread Luba Powell
you need to add the shutdown-hooks permission Yes, this too. You can either update policy file directly or via GUI jdk1.3\bin\policytool you need to add the shutdown-hooks permission. - Original Message - From: "David Wall" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, June

Re: What are EJB

2001-06-18 Thread Sam Newman
Problem is all the containers we've used up till now have had real problems with bean managed persistance...as a result we had to avoid it. They seem better now, but its a bit late for us. The single biggest headache I've had developing/designing EJB's is trying to make the OO centric java (e.g.

RE: Finding the XML parser in Tomcat

2001-06-18 Thread Eoin Woods
I think this has come up before. Tomcat has an XML parser built in (it reads XML files for configuration). To use Xerces in our servlets, we had to add xerces.jar to the front of the CLASSPATH in the tomcat.sh script. Eoin. -Original Message- From: Frank Lawlor [mailto:[EMAIL

RE: SSL handshake failure URGENT

2001-06-18 Thread Jean-Etienne G.
ok, thanks Henri and Tim I use Linux RedHat 7, but it seems that SSL options was not taken in account with default launching of httpd (with httpd start) so I made first some modifications of httpd conf (specially putting on comment the ifDefine SSL tags to make it taken in account, and made

Re: nt-service

2001-06-18 Thread Tim O'Neil
At 08:49 AM 6/18/2001, you wrote: Hello tomcat-user, Please, could you help me: i've made everything as described in NT-Service-howto.html but i've got such results: E:\downloads\jakarta\tomcat3.2.2net start tomcat System error 1311 has occurred. What's the status of the Net Logon

NT-service

2001-06-18 Thread Andrew Zhdanov
Hello Tomcat, Could anyone help me, whith NT-Service, please. The results i've got while making nt-service: E:\downloads\jakarta\tomcat3.2.2jk_nt_service.exe -I tomcat D:\tomcat\conf\wrapper.properties Asked (and given) winsock 1.1 The service named tomcat was created. Now adding registry

RE: SSL handshake failure URGENT

2001-06-18 Thread Jean-Etienne G.
The rpm installation of apache (1.3.20) failed cause it claims openssl = 0.9.6 (that I installed) and cause there are a lot of conflicts with previous version of apache (1.3.12) I am not a big afficionados of Linux fine configuration and tuning but I am compelled to work on this plateform. Do

Re[2]: nt-service

2001-06-18 Thread Andrew Zhdanov
Hello Tim, Monday, June 18, 2001, 7:23:34 PM, you wrote: TON At 08:49 AM 6/18/2001, you wrote: Hello tomcat-user, Please, could you help me: i've made everything as described in NT-Service-howto.html but i've got such results: E:\downloads\jakarta\tomcat3.2.2net start tomcat System

RE: SSL handshake failure URGENT

2001-06-18 Thread Phillip Kuzma \(Support\)
smime.p7m

Restarting Tomcat.

2001-06-18 Thread Phillip Kuzma \(Support\)
smime.p7m

Re: newbie: Installing Servlets

2001-06-18 Thread Francis Callo
Hi, if you have a servlet named HelloWorldi believe you have to put your classes on webapps/examples/WEB-INF/classes/ and access it with URL http://localhost:8080/examples/servlet/HelloWorld; Let me know if it works. ;) GUD LUK Francis --- LeRoi [EMAIL PROTECTED] wrote: Hello! Now that I

Re[3]: nt-service

2001-06-18 Thread Andrew Zhdanov
Hello Andrew, Monday, June 18, 2001, 7:46:58 PM, you wrote: AZ Hello Tim, AZ Monday, June 18, 2001, 7:23:34 PM, you wrote: TON At 08:49 AM 6/18/2001, you wrote: Hello tomcat-user, Please, could you help me: i've made everything as described in NT-Service-howto.html but i've got such

Re: SPAMMER - Fw: CV{JAVA}

2001-06-18 Thread Alex Fernández
Why? It's nice to get some worm regards once in a while... Un saludo, Alex. Can something be done about this kind of behavior...

RE: Re[3]: nt-service

2001-06-18 Thread Randy Layman
It probably had to do with the fact that the System account doesn't have access to the network drive, which would prevent it from finding the binary to run. (It is probably a combination of not having the partion mounted and security permissions). Randy -Original

servlet authentication mechanism

2001-06-18 Thread rajaxn r
Hi I am configuring a web application to run with servlet authentication mechanism. The webapplication is to be configured on both tomcat 3.2 I created entries in web.xml like the below /* web-app display-nameTest1/display-name

Running Tomcat under Win 2K - help!

2001-06-18 Thread pfriedl
Hey all. I searched the archives and wasn't able to find any real good info on running Tomcat under Win 2K. I understand that it should be run in conjunction with Apache, but I can't even get it to run on it's own. I did have it running when my box was running Win 98, but Win 2K seems to be

RE: newbie: Installing Servlets

2001-06-18 Thread LeRoi
Yup! That worked. Part of the problem for me is that the book I'm using to learn Java was written just before the Java web server was released to Jakarta. Innyway, you've saved me from lots of work until I need to. I'm I've been reading the documentation on deploying an application. For a

RE: Session with IE

2001-06-18 Thread Ignacio J. Ortega
Hola Jose Luis: I think you are having problems with cookies, is the only way i see it failing.. Please access the http://localhost:8080/examples/jsp/security/ URL in your installed tomcat, and try to use the Cookies auth to see if works, if not, i'm almost sure the problem is on your browser (

RE: Running Tomcat under Win 2K - help!

2001-06-18 Thread Randy Layman
First, in your own best interest, don't post with HTML/RTF email messages, it limits the number of people who can read your message, which you don't want. Second, I think a more telling problem is that you are getting NoClassDef for the java executable. Its like the script is

Re: root context

2001-06-18 Thread Mike Erickson
thanks, I put the war in a new folder, changed the docbase of the context and restarted.. it didn't work but I noticed that the war did not automatically expand.. so I expanded the war manually, restarted and it worked fine.. after reading through some more threads, I found that commenting out

RE: Session with IE

2001-06-18 Thread Keng Wong
I'm also having a problem with SingleSignOn (SSO) using 2 different webapps on Tomcat 4. The cookie works with the jsp example within 1 webapp but the SSO did not work. Log shows SSO cookie is not present. The only cookie tht gets set is the JSESSION cookie by the jsp app. Does anyone have any

RE: root context

2001-06-18 Thread Filip Hanik
is there any other way to configure the auto-unpacking of the wars (besides the AutoSetup entry)? it'd be nice to have the ability to specify auto-context adding and auto-unpacking of wars seperately.. well, you can write your own AutoSetup interceptor that does this. take a look at the doc

RE: mail return

2001-06-18 Thread Swart, James (Jim) ** CTR **
if you are on your own mailserver, and listed as root/admin.. you are probably getting a message from your own system... I used to get things like that, and I traced them back to a cron job that was running that had no output but mailed me anyway. See what TIME it is getting the message and see

  1   2   >