AW: help me out

2001-03-14 Thread Kurt, Oliver
you're right..some jvm is buggy -Ursprngliche Nachricht- Von: Herchel Wojciech [mailto:[EMAIL PROTECTED]] Gesendet: Donnerstag, 15. Mrz 2001 08:57 An: '[EMAIL PROTECTED]' Betreff: ODP: help me out you don't need the .newInstance() on the end of your driver... on the other hand it

AW: Simple SQL Statement.....

2001-03-13 Thread Kurt, Oliver
even it is really OT: you inserted thePrice as a VARCHAR type. maybe it is a NUMBER, but if it a VARCHAR then you have to "update parkingprice set price = '"+thePrice+"'" -Ursprungliche Nachricht- Von: Scott Walter [mailto:[EMAIL PROTECTED]] Gesendet: Dienstag, 13. Marz 2001 01:37

page buffer, autoFlush and forward

2001-03-05 Thread Kurt, Oliver
Hi, when I use the errorPage attribute (which basically is AFAIK a forward) I have to use a autoFlush="false" and I have to set my buffer large enough. Is it true, that errorPage forces me to set autoFlush=false?? (if I want that errors are handled properly, even an error occurs at the end of a

AW: Newbie-Error in compiling servlets

2001-03-02 Thread Kurt, Oliver
is the servlet.jar in your classpath?? (servlet.jar is not included in J2SE, but you can find it in %tomcat_home%\lib\servlet.jar ) -Ursprüngliche Nachricht-Von: RaviShankar K [mailto:[EMAIL PROTECTED]]Gesendet: Freitag, 2. März 2001 14:02An: [EMAIL PROTECTED]Betreff:

AW: Lilian's problems with Tomcat and JavaBeans

2001-02-28 Thread Kurt, Oliver
i had the same problem. i think (even I don't really know!!!) that you can't use absolut pathes in docBase I solved the problem bymovingmy "ABC" directory to %tomcat_home%/wwwroot/ABC and then changed docBase="wwwroot/ABC" Oliver kurt -Ursprüngliche Nachricht-Von: Negrini

AW: JDBC connecting to Oracle

2001-02-26 Thread Kurt, Oliver
that depends if you use a thick oracle driver or the thin oracle driver. for the thin-driver the URL is: jdbc:oracle:thin:@host:port:SID example: jdbc:oracle:thin:@s_safedb1:1521:sf01 for the thick-driver: jdbc:oracle:oci8:@tns-listener-name see@ technet.oracle.com at the documentation for

AW: Recommendations for JSP development tools?

2001-02-09 Thread Kurt, Oliver
I'm using homesite for editing jsp-pages. and if you want to write the code by your self, only supported by syntax highlighting and code-completion for html, it works very well. a drawback is, that code-completion for java is not supported (as it is with jbuilder or forte). -Ursprngliche

AW: date

2001-02-02 Thread Kurt, Oliver
or use java.util.DateFormat -Ursprngliche Nachricht- Von: Peter Thorsager [mailto:[EMAIL PROTECTED]] Gesendet: Freitag, 2. Februar 2001 15:25 An: [EMAIL PROTECTED] Betreff: Re: date Use the MessageFormat object in java.text.MessageFormat included in the JDK. Peter Thorsager -

AW: Server Side Includes(SSI) and Tomcat vs JSP Include Directive

2001-01-31 Thread Kurt, Oliver
I'm acutally no tomcat or jsp guru, but I think you have to use JSP-syntax to include other jsps (or any other files) have a look at the jsp reference @ javasoft.com 1.) Include Directive Includes a static file, parsing the file's %@ include file=" relativeURL "% 2.) jsp:include Includes a

AW: Problems with set JAVA_HOME in tomcat.bat

2001-01-22 Thread Kurt, Oliver
you have to set the enviroment variable java_home, which will be done with the follwoing "dos command": 1.) open a "dos-box" 2.) type: set JAVA_HOME=c:\Programme\jdk1.3 (or whereever you installed the java development kit) 3.) change to the tomcat directory and the change into the "bin"

AW: What is JDBCRealm?

2001-01-11 Thread Kurt, Oliver
JDBCRealm is - IMHO - a miserable name for "how to make tomcat use a database for user-authorization" (instead of using a xml-file) -Ursprüngliche Nachricht- Von: kamesh jayachandran [mailto:[EMAIL PROTECTED]] Gesendet: Freitag, 12. Januar 2001 18:36 An: [EMAIL PROTECTED] Betreff: What

AW: JDBC Realm documentation

2000-12-18 Thread Kurt, Oliver
Okay then let me explain what I did and what didn't work 1.) I followed the instructions in the jdbc-realm howto (what means, that i created the tables in the database and commented the line "org.apache.tomcat.request.SimpleRealm" and inserted the following: RequestInterceptor

AW: JDBC Realm documentation

2000-12-18 Thread Kurt, Oliver
I found, what I did wrong !!! The security-specific entries in the web.xml file MUST be in a webapplication-specific web.xml file under WEB-INF and not in /conf/web.xml. This is - for someone who is familiar with all the stuff - totally clear. But for a beginner it isn't. However, muchas

JDBC Realm documentation

2000-12-18 Thread Kurt, Oliver
So lets move on Finally I got the auth-methodBASIC/auth-method working. Now I want to evaluate other aut-methods. I red in the web.dtd that BASIC, FORM, DIGEST and CLIENT-CERT are legal values for the auth-method. QUESTION 1.) Where can I read something about that stuff, for example which

AW: Tomcat with Java 1.3 under NT

2000-11-16 Thread Kurt, Oliver
BTW: I'm using Tomcat 3.1 on NT4.0 with Java 1.2 __or__ 1.3. It works with both version very well. I had the same problem and I changed the registry, so it shows: "CurrentVersion"="1.3". Afterwards tomcat ran without any problems. Regards Oliver Kurt -Urspr$B!&(Jgliche Nachricht- Von:

SessionContext.log(...) Where does the path in the output come from?

2000-10-31 Thread Kurt, Oliver
Hi all, when using the log method from SessionContext(), the written output looks like the follwing: Context log path="" : here goes the log message string What is that "Context log path" thing? When I'm using log("...") the context log path is always empty. What is the meaning of the path