Chunked data transfer

2003-11-06 Thread Me
Hello people, I have a question concerning chunked data transfer. Tomcat doesn't seem to be posting the size of the chunk and an extra CR/LF's? The user in this message : http://mikal.org/interests/java/tomcat/archive/view?mesg=54749 Seems to have it but I don't seem to be able to receive

Re: Best Tomcat Book, Recommendations???

2003-07-30 Thread Me
Well, everyone else is right. assuming that you have some experience with http servers in general, you dont need a big fat manual for tomcat. but in case, you are new to web techs altogether, probably Oreilly Tomcat will give you a helping hand good luck - Original Message - From: John

Tomcat as Windows service on Windows XP

2003-07-25 Thread Me myself
How can i use tomcat as a windows service on XP ? I cant find any documentation about this in the tomcat documentation. Thanx. _ Hotmail snakker ditt språk! http://www.hotmail.msn.com/cgi-bin/sbox?rru=dasp/lang.asp - Få Hotmail på

how 2 start tomcat from ms-dos command prompt without creating a new window ?

2003-07-24 Thread Me myself
i have an question about how to start the tomcat servlet container as an windows-process from the ms-dos command prompt without getting a new cmd-window. Its that when i start my java server with STARTUP it makes a new command window and starts the new process in this new window. i know what in

Re: how 2 start tomcat from ms-dos command prompt without creating a new window?

2003-07-24 Thread Me myself
. From: John Turner [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Subject: Re: how 2 start tomcat from ms-dos command prompt without creating a new window ? Date: Thu, 24 Jul 2003 15:26:42 -0400 Install Tomcat as a service. John Me

Custom Homepage

2003-07-21 Thread Me
I installed tomcat yesterday and i am totally confused about its config files. i am trying to change the default homepage so that tomcat calls a servlet in the preconfigured servet directory instead of the index.jsp page. Is it possible Thanks in advance

Re: Connection Pooling?

2002-07-04 Thread Me
Hey! You could try to use this connection pool. I've used it and its a decent good working pool. www.javaexchange.com/api/com/javaexchange/dbConnectionBroker/ DbConnectionBroker.html But the site seems to be down at the moment. Elm Hi, I want to implement my application with Connection

Re: documentation location

2002-04-22 Thread Me
Google is your friend! http://java.sun.com/j2ee/sdk_1.2.1/techdocs/api/javax/mail/package-summary.h tml EG - Original Message - From: Øyvind Vestavik [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Monday, April 22, 2002 1:36 PM Subject: documentation location Where

How to get userRole from Tomcat 3.2.3?

2001-08-13 Thread me
Hi, I am using JDBCRealm and need a convenient way to get the userRoles of the user. GetRemoteUser is not the right way. In the source code of JDBCRealm I found a getuserRoles method - how can I use it in my own servlets? Calling jedbcRealm = new JDBCRealm() and then jdbcRealm.getuserRoles do

tomcat 3.2.2 session already invalidated-serious problem

2001-06-26 Thread Its Me.. Karthik
) at org.apache.tomcat.util.ThreadPool$ControlRunnable.run(ThreadPool.java:501) at java.lang.Thread.run(Thread.java:484) please help me..very urgentkarthikGet Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.

TWIMC: username and password in session and jdbc Realm

2001-05-31 Thread me
Finally it was easy: JDBCRealm stores the j_username and j_password as session variable and yout can get it via session.getAttribute either as JSP scriplet or as servlet. Just store it or get it through the first page after login. Sometimes it is worth studying the source code.. (here

Problem sun.misc solved - but why is authorization=null???? Please help (urgent!)

2001-05-30 Thread me
Hello, I solved the problem with sun.misc (was an error in directive). But now I had a strange error. When performing form login via JDBC and trying to read out AUTHORIZATION Header the string is NULL. Why? Does form login not write Authorization in HTTP Header? I do the following: % String

authorization=null?? I use JDBC Realm?

2001-05-30 Thread me
Hi Jan, does it really work?? I am using Apache 1.3, Tomcat 3.2.2, Win NT 4.0 SP6, JDBC Realm, the page is under security-constraint in a frame (the first subpage) and request.getRemoteUser() and request.getAuthType() are working, giving me FORM and USER. But request.getHeader always returns

RE: JavaBeans

2001-05-29 Thread me
Hi Kavi, JavaBeans must be placed in the Web-Inf/classes directory of your webapp as long as they don't belong to a package and you don't set a classpath. Else you must create a directory structure similar to your package name, i.e. package: yourpack.com -- web-inf/classes/com/yourpak. Hope

How to get Role and Password from JDBC Realm

2001-05-28 Thread me
Hello, I want to use the provided user_pass and user_role in the JDBCRealm-Database given in server.xml. What is the most elegant way to do this? Of cource I would be able to get it via request.getRemoteUser() and then make a select to the hardcoded database name with provided auth user and pass

RE:RE: How to get Role and Password from JDBC Realme -using 3.2.2

2001-05-28 Thread me
Thanks Jan, I have to apologize not to have explained the intended usage: I need username, userpassword and userrole since I will use it for DB-Authorization (GRANT to group, and user to tables and so on, connecting DB with username,userpass). I intend to synchronize username, password and role