Re: Session Creation with IE

2005-02-15 Thread Wouter Boers
] For additional commands, e-mail: [EMAIL PROTECTED] -- Regards, Wouter Boers business: http://www.abcdarium.nl personal: http://www.ikke.net - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: tomcat + SSL, apache

2005-02-14 Thread Wouter Boers
. -- Regards, Wouter Boers business: http://www.abcdarium.nl personal: http://www.ikke.net - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

Re: order of creation of JNDI datasource from context.xml and Filter.init() using it

2005-02-07 Thread Wouter Boers
] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Regards, Wouter Boers business: http://www.abcdarium.nl personal: http://www.ikke.net - To unsubscribe, e-mail: [EMAIL

Re: Emergency: make Tomcat forward

2005-01-25 Thread Wouter Boers
think. -- Ladies' Home Journal - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Regards, Wouter Boers business: http://www.abcdarium.nl personal: http

Exploded WAR deployment in Tomcat 5.5

2005-01-21 Thread Wouter Boers
. Is this an known issue? I haven't found it in the bug list or mail archive. -- Regards, Wouter Boers business: http://www.abcdarium.nl personal: http://www.ikke.net - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e

RE: Unanswered questions

2003-02-17 Thread Wouter Boers
1. Is there a way to hup the tomcat server or otherwise reload files from the commandline? The Tomcat Ant plug-in knows how to reload / load/ remove applications. So yes it is possible. You can use ant for that or figure out yourselv how that is done. Wouter

RE: need X running tomcat

2002-06-06 Thread Wouter Boers List
Which JVM do you use? If I'm correct, this bug in the JVM is supposed to be fixed in JVM 1.4. Wouter -Original Message- From: Ralph Einfeldt [mailto:[EMAIL PROTECTED]] Sent: donderdag 6 juni 2002 10:47 To: Tomcat Users List Subject: AW: need X running tomcat Better user Xvfb.

RE: IP problem

2001-12-27 Thread Wouter Boers
Hi, Why don't you simply solve it the way it's supposed to? set the DNS lookup to the IP address of you ISS box and make sure the reverse lookup of the IP number to the name also is set correctly. Your problem is a network problem related (DNS) and has nothing to do with Tomcat or a web server

RE: Cookies in tomcat-3.2.3

2001-12-24 Thread Wouter Boers
That is not true. Then you have to pass the session cookie as a parameter through URL rewriting. You see that quite often. But then again, who does not accept cookies nowadays? Wouter -Original Message- From: Zsolt Koppany [mailto:[EMAIL PROTECTED]] Sent: Monday, 24 December, 2001 14:32

RE: Restricting access to files

2001-12-18 Thread Wouter Boers
Move it to the WEB-INF directory, which cannot be access by the browser by servlet 2.2 specs (preferred) or move to the file to a location that's in the classpath so the tomcat classloaded can find it. Wouter -Original Message- From: Behrang Saeedzadeh [mailto:[EMAIL PROTECTED]] Sent:

RE: Error while executing jsp page (Urgent)

2001-12-13 Thread Wouter Boers
Try copying the code in a servlet and compile it, perhaps you get a better idea of why it can't compile the code. Wouter -Original Message- From: pandrajula seshu srinivas [mailto:[EMAIL PROTECTED]] Sent: Thursday, 13 December, 2001 11:17 To: [EMAIL PROTECTED] Subject: Error while

RE: Disabling TomcatStandalone under IIS

2001-12-12 Thread Wouter Boers
Yes, disable the web server in tomcat in the config.xml file. Tomcat does niet need the web server to provide the JSP/Servlet services. Wouter -Original Message- From: Rastislav Vasil [mailto:[EMAIL PROTECTED]] Sent: Wednesday, 12 December, 2001 16:59 To: TOMCAT-USER (E-mail) Subject:

RE: TC 4.0 newbie - servlet app won't run

2001-11-21 Thread Wouter Boers
I think your problem might be this: servlet-mapping servlet-namemyservlet/servlet-name url-pattern/classes/url-pattern /servlet-mapping AFAIK the url-pattern should be: url-pattern/myservlet/url-pattern to map http:///myapp/myserlvet to you servlet

RE: Is it always necessary to place the servlet class files under the WEB-INF/classes folder?

2001-10-31 Thread Wouter Boers
Yes it is. Tomcat. and any other lstest (application) servlet/jsp container, including JRun, follows the servlet 2.2 specs which defines the way an application is layed out and thus can be packed together in a WAR file. Wouter -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

TC4 and cocoon 2 and jetspeed

2001-09-24 Thread Wouter Boers
Hello, Ik have a out of the box installation of tomcat 4 on a W2K Proffesional box with JDK 1.3.1 from Sun. Tomcat itself runs ok, the examples work etc etc. When I deploy the jetspeed war (1.3a1) it does not work correctly (I'm not able change the customizable area). Cocoon2 2.0b2 is also

RE: Is this the way to do it?

2001-09-17 Thread Wouter Boers
Java does have a slimmed down version of the Object of most frequently used primitive types boolean - Boolean int - Interger float - Depends what you want BigInteger, Double etc etc Look at the JavaDoc documentation of java int the java.lang.*, usually there is a toInt() method to

how is a session identified

2001-09-05 Thread Wouter Boers
Hello, I have a question reguarding the session. What is this session based on? How is a client browser uniquely identified by tomcat to map that session to its own context. I'm looking for the data that is required to identify the client browser and the identification process. I would love to

RE: Tomcat can't open my bd.properties file

2001-09-05 Thread Wouter Boers
Hi, You need to loopup the exaxt location of the properties file via the Class.forname structure. That returns the input stream to the file which you can then load into the contrucor of the properties. This is the line that does this: is =

RE: Why does servlet.jar break servlets?

2001-08-30 Thread Wouter Boers
You allready gave the answer. Tomcat is amongst other things, a servlet container and therefore needs access to the javax.servlet.* packages. That's why it's in the common/lib, it's crucial for tomcat to run. If you look at the startup scripts you will notice that the jars in the

RE: Load Balancing for WEB-Application with sessions

2001-07-27 Thread Wouter Boers
I think that what you want is not part of tomcat nor will it be. What you require is a load blancer (or a machine that acts as a load balancer but I don't know of any open source initiative on this). The loadbalancer keeps track of session data will forward each request from one and the same

RE: tomcat process dies out...

2001-05-30 Thread Wouter Boers
Maybe it's because you don't start it with nohup. It's common in unix to kill all process that are initiated the parent if the parent (your shell) ceases to exist (you are logging out). See 'man nohup' Wouter -Original Message- From: Krishna Kishore Thotakura [mailto:[EMAIL PROTECTED]]

RE: installing tomcat 3.2 on windows 98

2001-05-04 Thread Wouter Boers
Yes it works fine, It's just java so why not... Use the startup.bat in the tomcat/bin directory. It will set all the appropiate enviroment variables correcly. Edit it, if needed and tomcat does not start correcly. I would first start it from the command prompt and test it before putting it into

RE: tomcat + linux + graphics

2001-05-04 Thread Wouter Boers
I also ran into that problem. There is a freeware/opensource program available that emulates the X-server, called Xvbf. It works for me. So you don't need a full blown X-server and save the CPU and memory overhead it consumes. Wouter -Original Message- From: chris brown [mailto:[EMAIL

RE: How to read property files?

2001-04-21 Thread Wouter Boers
Sorry to tell you that it does work. I've tried used this on various platforms with various software deployed on various platforms, like Jserv, Tomcat, WebLogic, Jrun on Win2000, Linux, Solaris, HP-UX. So it's fair to say that this contruct does work ;) Wouter -Original Message- From:

RE: Tomcat 3.2.1 and Servlet shortcut

2001-04-19 Thread Wouter Boers
Hai, I suggest you put the servlet-mapping/servlet-mapping tag inside the serlet/servlet scope. After all it's part of you servlet definition. Wouter -Original Message- From: Geobert QUACH [mailto:[EMAIL PROTECTED]] Sent: 18 April 2001 11:28 To: Tomcat-List Subject: Tomcat 3.2.1 and

RE: escape() Problem...

2001-03-16 Thread Wouter Boers
Hi, Don't rely in JavaScript. Use java.net.URLDecoder.encode(), and java.net.URLEncoder.decode() before you push the parameters to the browser. Wouter -Original Message- From: Martin Ko [mailto:[EMAIL PROTECTED]] Sent: 16 March 2001 14:52 To: [EMAIL PROTECTED] Subject: escape()

RE: Logout of telnet session - tomcat stops

2001-03-12 Thread Wouter Boers
Hi Gary, You need to start it from the init.d. Below is a script we use to do the trick. I connect through ssh, change user to root and then run the script: /etc/init.d/tomcat start the stop argument will do the obvious of course. root@www1:/# cat /etc/init.d/tomcat #! /bin/sh case "$1" in

Re: Logger

2000-10-27 Thread Wouter Boers
://protomatter.sourceforge.net/whatisprotomatter.html They have a collection of 'syslog' facilities that might help you. Wouter -- Mphasis Media BV. Interactive architects Wouter Boers [EMAIL PROTECTED] http://www.MphasiS.com Mobile: +31 (0)6 28877723 Fax: +31 (0)20 7785445 Wouter