RE: JNDI References To Tomcat 4.1

2003-08-16 Thread Micael
Thanks, Yoav. I really could not tell what the question was. At 03:27 PM 8/15/2003 -0700, Yoav Shapira wrote: Howdy, I believe he was referring to external access to tomcat's JNDI provider, which is tricky. In-memory is easy and you're right a JDBC resource can be configured (just like any

How to trigger events from tomcat?

2003-08-16 Thread Prince
hi, I am developing a web based appointment sheduler. the data is stored in xml format. i am using tomcat/jsp/servlet for example if i added a new appointment , the program will ask for a reminder time. I am giving 08/08/2003 10:30 so at 08/08/2003 10:30 an email should be sent to me saying

RE: How to trigger events from tomcat?

2003-08-16 Thread Sjoerd van Leent
It seems the best way to do it is in a process or a thread, running aside the regular web-application. This indeed uses an infinite loop to check on times. You should be able to set this process as a low-priority process, so it doesn't consume too much processor time. I don't know if there is

Re: two way trust

2003-08-16 Thread Steve Kwong
Thanks Bill. Upon using keytool's self sign cert I was able to get two-way trust working. Previously I was using certificates generated from BouncyCastle, and it didn't work (it could be my BC code that was generating incorrect/incomplete certs, but with one way trust - the client needing to

compile error

2003-08-16 Thread Aulia Yusuf
Hi, my name is Aulia. I have a weird problem here. When I try to run JSP and if the page has some errors. It displayed error messages. But, right now...when I compile it, and if it has a compilation error, it does not display any message of error specification but does display a page saying

port 8009 security (ajp13)

2003-08-16 Thread yo
Hi, everyone I have a question about port 8009. I'm using Tomcat 4.1.27, Apache 2.0.47, mod_jk2/2.0.3-dev on Solaris 9. When Tomcat starts, Tomcat says, INFO: JK2: ajp13 listening on /0.0.0.0:8009. (This message is in catalina.out) I guess I have to do something for the Tomcat security... but

RE: where is JSESSIONID?

2003-08-16 Thread Craig Berry
As that's a session-scope cookie, it doesn't get persisted as a file. -Original Message- From: Billy Ng [mailto:[EMAIL PROTECTED] Sent: Fri 8/15/2003 6:41 PM To: Tomcat Users List Cc: Subject: where is JSESSIONID?

How To Build mod_jk?????

2003-08-16 Thread Bongrip
I have been trying to build mod_jk and it seems the documentation is lacking and the instructions do not work. First my system: Solaris 8 64-bit with latest patch cluster gcc 3.3 AND Sun's Forte Dev 7 compiler Tomcat 4.1.27 (installed and running fine) Apache 2.0.47 (installed and running fine)

Re: port 8009 security (ajp13)

2003-08-16 Thread Eric J. Pinnell
Hi, Firewalls. In a single box setup you would have a firewall that would only allow access to port 80. Apache would get the request and forward it back to itself on port 8009. This would be behind the firewall so you couldn't access port 8009 directly. In a N-tier setup there would be a

Re: How To Build mod_jk?????

2003-08-16 Thread Eric J. Pinnell
Hi, I don't use ant. I use make. It appears that you are trying to build JK2. In the native2 directory: ./configure --with-apxs2=/path/to/apache/bin/apxs make -e On Sat, 16 Aug 2003, Bongrip wrote: I have been trying to build mod_jk and it seems the documentation is lacking and the