Re: AW: JNDI question

2001-10-26 Thread P.Miller
Hello, try it with the IP-Adress instead of @zarragon put @195... in your driver. perhaps this solves your problem. Hth Peter "Nottebrok, Guido" wrote: > > Hallo, > I have the same problem with a MySQL Database, configured everything > like you and also get null after the lookup. > I post

Re: JDBC Drivers

2001-10-23 Thread P.Miller
Hi, you can find the classes at the ORACLE web-site; it's called classes12.zip. for use with TOMCAT rename it to classes12.jar. Hth Peter The Duke wrote: > > I'm looking for a JDBC Driver for an Oracle Database. I have found some on the >java.sun.com. But I don't know wich one I need. It is fo

Re: off-topic: Result Set as attribute

2001-09-26 Thread P.Miller
Michael, thanks for your answer; You're right with Integer.parseInt() I realy read 2 good books of the Java-language, but I'm relatively knew to programming with classes so I think it's normal that I stuck sometimes on 'easy' things (I hope it's normal!). Nevertheless, now it works & thanks

Re: off-topic: Result Set as attribute

2001-09-26 Thread P.Miller
Hi Patrick, first thanks for your suggestion. I try to start with setting and passing an index i f type integer. When I want to get the parameter on the second page with # int i; i = parseInt(request.getParameter("index"); I get the message: method or class parseInt(java.lang.String) not found bu

off-topic: Result Set as attribute

2001-09-26 Thread P.Miller
Hello all, this is a bit off Topic, but it also belong to Tomcat: I have 2 jsp-pages: In the first a result set is executed. Each record in the row has a button ( more information) which leeds to the second page. On this page I will give more information to the item of the first page but I allway

Re: Logout with basic autorization

2001-09-19 Thread P.Miller
Hi Oleksandr, you can 'logout' with session.invalidate(). You have to login again afterwards. Hth Peter Oleksandr Fedorenko wrote: > > Hi. > > How to do really logout using basic authorization ? > > I mean to get authorization prompt again by using tomcat engine ? , i.e. > > tomcat should c

Re: JSP page to Oracle with Tomcat all files

2001-09-19 Thread P.Miller
erid and passwd after the jdbc:oracle:thin:@xxx.x things? > > i know the format for cloud DB, i am wondering it for oracle only > > On Tue, 18 Sep 2001, P.Miller wrote: > > > Hi Peter, > > > > I put the IP-Adress after the '@' and use the 'thin' driv

Re: JSP page to Oracle with Tomcat all files

2001-09-17 Thread P.Miller
Hi Peter, I put the IP-Adress after the '@' and use the 'thin' driver instead of the 'oci8'. Also you have to put the port# on which the Listener waits for calls. In most cases it's the 1521. And the name of your Database ORCL or something else So the string should look like : jdbc:oracle:thin:

Re: Loggin out using JDBC realms

2001-09-03 Thread P.Miller
Hi Roland, you could use session.invalidate(). The next time the user wants to access a protected page he has to log in again. Peter Roland wrote: > > Hello, > when using security realms, more specifically JDBC realms, > how do you log-out? > > Thanks for answers, Roland

Re: mod_jk.so differences

2001-08-29 Thread P.Miller
Hi gents, once again I try to find my luck with this question: can anyone provide me a compiled mod_jk.dll for use with WindowsNT/Apache 1.3.20/Tomcat 3.2.3 and SSL? I allways get the error ' mod_jk.dll not compiled for enhanced API!' and I have no VC++ compiler, so please help. Peter GOME

Re: How to make a connection pool when Tomcat start?

2001-08-21 Thread P.Miller
Hi, create a connection pool in the init-method of a servlet. In web.xml setup this servlet to . Though the init()-method of the servlet will be executed during tomcat-startup. Hth Peter hongx wrote: > > ¡¡How can I make a connection pool when Tomcat start?

Re: Problem with loading servlets on start up 2

2001-08-21 Thread P.Miller
Hi, I got the same error with a bean that creates a connection Pool OraPool beans.OraPool I put some log messages to see if the pool is created correctly in the class-constructor and that's okay! Nevertheless the next message after successfull creating the pool is: cannot load servlet name:

Re: New to servlets: Parameter initialisation in web.xml

2001-08-20 Thread P.Miller
Hi chris, specified in a tag in the web.xml- context can be made available via the ServletConfig.getInitParameter("name"). If you put them in in the they can be made available via the ServletContext object (instead of the ServletConfig as above) --> ServletContext sc = ServletConfig.getServl

mod_jk.dll NT compiled version for apache 1.3.20/tomcat 3.2.3]

2001-08-16 Thread P.Miller
Hello, once again I try to get help with my mod_jk problem: does anybody know where I can get a compiled version of mod_jk.dll for NT 4.0/Apache 1.3.20-ssl/Tomcat 3.2.3, so that I do not get the error message: "...might crash because NOEAPI.." when starting apache/ssl? Or does SSL and other stu

mod_jk.dll NT compiled version for apache 1.3.20/tomcat 3.2.3

2001-08-13 Thread P.Miller
Hello, does anybody know where I can get a compiled version of mod_jk.dll for NT 4.0/ Apache 1.3.20-ssl/Tomcat 3.2.3, so that I do not get the error message: "...might crash because NOEAPI.." when starting apache/ssl? Or does SSL and other stuff works correct and the message is not so important?

DBTaglibs - initparameter problem

2001-08-09 Thread P.Miller
Hello, I try to use the DBTags with initparameters in web.xml like: web.xml: dbURL org.apache.taglibs.dbtags.connection.DatabaseURLTag oraURL jdbc:oracle:thin:@192.168.1.200:1521:ORC1 dbDriver org.apache.taglibs.dbtags.connection.Drive

Re: PoolMan woes

2001-07-03 Thread P.Miller
Hi Matt, I've the same problems in the beginning (Tomcat stops without a message). I put the property-file in the /tomcat/classes directory and the poolman.jar file in the classpath (set classpath=/poolman.jar;%classpath%) then it works. Hth Peter Matt Barre wrote: > > I am trying to get P

Re: autoexec.bat

2001-06-27 Thread P.Miller
Hi, click right on your MS-DOS-icon --> environment --> memory --> set it to e.g. 4096 this should resolve your memory problem. HtH Peter Luc Juggery wrote: > > Hello, > > i've downloaded tomcat 3.2.2 but i got trouble > starting it up . Well, i'm not really familiar with > all of this in fac

mod_ssl & NT

2001-06-19 Thread P.Miller
Hi, (Apache 1.3.19- NT 4.0 SP5 - Tomcat 3.2.2) I'm trying to get Apache running with mod_ssl and openssl on a Windows NT machine. I got so far: Downloaded and installed Perl, GNU C(Mingw32) & the GNU make. Compiled openssl succesfull and created the static libs and dll's libcrypto.a, libssl.a, l

Re: j_security_check

2001-06-11 Thread P.Miller
n't work. > > Thanks > > Mark > > - Original Message - > From: "P.Miller" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Monday, June 11, 2001 1:58 PM > Subject: Re: j_security_check > > > Hi Mark, > > > &

Re: j_security_check

2001-06-11 Thread P.Miller
Hi Mark, I send you attached the parts of mod_jk.conf , web.xml which works for me; belonging to directory structure c:\tomcat\webapps\tute6\form\protected.jsp c:\tomcat\webapps\tute6\secure\login.jsp & error.html c:\tomcat\webapps\tute6\WEB-INF\web.xml set in your server.xml so you can see

Re: Win98 "bad command" problem

2001-06-08 Thread P.Miller
Hi, in most cases in Win98 this is a memory problem: right click on your MS-DOS icon --> properties --> memory --> set your DOS-memory to 4096 or 8192. HTH Peter Adrian Almenar wrote: > > I have the same problem, but i think that win98 cant handle long path's so i > installed win2k and it wor

Re: apache don't find my jsp files but works whith examples jsp files

2001-06-06 Thread P.Miller
Hi Francois, you have to add an 'Alias' statement for your context in the mod_jk.conf (which you should 'Include' in the httpd.conf) and also a 'JKMount /context/*.jsp ajp13' in the same file. HTH Peter > François Andromaque wrote: > > Hello > I've developped a jsp WEB site, so i've my web sit

Re: j_security_check

2001-06-06 Thread P.Miller
sing tomcat standalone) : > JkMount //j_security_check * ajp13 > or in httpd.conf if with apache. > > -Amit. > > - Original Message - > From: "P.Miller" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Tuesday, June 05, 2001 1:13 PM >

Re: AUTH: j_security_check

2001-06-06 Thread P.Miller
> apache, and the problem behind of your problem may caused by the HTTP > server which does not know how to forward from the HTTP server to Tomcat, > i.e., forwarding mechanism for Servlet/JSP handling. > > Does it make sense to you? > > Pae > > -Original Message---

AUTH: j_security & uriworkermap.properties

2001-06-05 Thread P.Miller
Hi, because I get a error.-.message of [EMAIL PROTECTED] I post it once again: 1. I tried the FORM-authentification in Tomcat 3.2.1: login.jsp: Username: Password: I get the correct Form but when I press 'submit', I allways get the error: URL j_security_check not found So I searched fo

AUTH: j_security_check

2001-06-05 Thread P.Miller
Hi, I tried the FORM-authentification in Tomcat 3.2.1: login.jsp: Username: Password: I get the correct Form but when I press 'submit', I allways get the error: URL j_security_check not found So I searched for a java-class or a method inside a class which is called 'j_security_check' b

Re: Running Tomcat on Windows...

2001-03-20 Thread P.Miller
Hi Jason, you get the Exception because tomcat is already running and you try to start it once again and the ports are already in use. Peter Jason Sardano wrote: > When I try to start and run Tomcat, I receive a > "FATAL:java.net.BindException" error. I am using Tomcat 3.2.1, JDK 1.2.2 and > J