Path Manipulation Based On Users

2004-08-22 Thread A
Developers, I need you help about something which is bugging me. I am using BASIC authentication. Say a user logs in as 'steve' i want to redirect the page they are allowed to see to be ./steve/ - That is i want to append their usename to the end of the servelt context paths. I know

Re: Path Manipulation Based On Users

2004-08-22 Thread mlist
ATTENTION: THIS IS AN AUTOMATED RESPONSE. DO NOT REPLY TO THIS MESSAGE. If you want to end your subscription, please use this link: http://www.nethugs.com/unsubscribe.shtml If you want to subscribe, please use this link: http://www.nethugs.com/whysubscribe.shtml If you need to contact a live

docBase attribute in context element doesn't recognize c$

2004-08-22 Thread son house
Hi, i migrated from TC4 to TC 5. in TC 4 i had a context element in web.xml which had an attribute of \\my-computer\c$\temp this worked fine. in TC 5 i get this error: java.lang.IllegalArgumentException: Document base \\my-computer\c\temp does not exist or is not a readable directory some how

Re: docBase attribute in context element doesn't recognize c$

2004-08-22 Thread Jacob Kjome
Are you running as a service? Try running the startup script instead and see if that works. The service runs under the system user which may not have access to the network drive. Jake At 06:34 AM 8/22/2004 -0700, you wrote: Hi, i migrated from TC4 to TC 5. in TC 4 i had a context element in

Access JBoss from Tomcat

2004-08-22 Thread Darryl L. Pierce
I have a Tomcat server running on the perimeter of my network. I am trying to add some EJBs to the architecture to handle some authentication tasks for users. I need this work to be done within the network, so don't want to put JBoss on the perimeter. I want to access my JBoss server from my

Re: docBase attribute in context element doesn't recognize c$

2004-08-22 Thread Sun House
Hi , i do start it with the startup script thanks Sun House Jacob Kjome [EMAIL PROTECTED] wrote: Are you running as a service? Try running the startup script instead and see if that works. The service runs under the system user which may not have access to the network drive. Jake At 06:34 AM

RE: docBase attribute in context element doesn't recognize c$

2004-08-22 Thread Dale, Matt
double click startup.bat in the bin directory -Original Message- From: Sun House [mailto:[EMAIL PROTECTED] Sent: 22 August 2004 15:29 To: Tomcat Users List Subject: Re: docBase attribute in context element doesn't recognize c$ Hi , i do start it with the startup script thanks Sun

RE: docBase attribute in context element doesn't recognize c$

2004-08-22 Thread Sun House
Thats what i do, as i written previously, i start tomcat 5 from startup.bat, still i the tomcat somehow parses Context docBase=\\my-computer\c$\temp ... as \\my-computer\c\temp . the dollar sign is removed, thus i get Document base \\my-computer\c\temp does not exist... BTW i use jdk1.4.2_5 ,

RE: docBase attribute in context element doesn't recognize c$

2004-08-22 Thread Caldarale, Charles R
From: Sun House [mailto:[EMAIL PROTECTED] Subject: RE: docBase attribute in context element doesn't recognize c$ still i the tomcat somehow parses Context docBase=\\my-computer\c$\temp ... as \\my-computer\c\temp . Have you tried simply escaping the dollar sign, perhaps by useing $$? -

Re: Configuring Tomcat 5 to not display null value as word null

2004-08-22 Thread Rick Wong
Thanks for the response. Unfortunately, the objects are not necessarily obtained directly from the request parameter. Sometimes data is massaged or obtained from other sources. I was hoping that there is a generic way to override the behavior. Since you mentioned about the used of filter,

Re: JSTL 1.1 / Tomcat 4.1.30

2004-08-22 Thread Rick Wong
Sorry. The answer is no. JSTL 1.1 requires servlet 2.4 spec, which is implemented in Tomcat 5. -- Rick Julian wrote: Does anyone know if it's possible to use JSTL 1.1 with versions of Tomcat prior to V.5? Upgrading the server is not an option. Thanks

RE: docBase attribute in context element doesn't recognize c$

2004-08-22 Thread Sun House
Chuck , YOU ARE THE MAN Escaping the dollar sign doesn't work, BUT double $$ do works: context docBase=\\my-computer\c$$\temp As my grandma used to say the more $ you have, the less headache you have Have a beautiful day Sun House Caldarale, Charles R [EMAIL PROTECTED] wrote:

Re: JSTL 1.1 / Tomcat 4.1.30

2004-08-22 Thread Julian
Rick Wong wrote: Sorry. The answer is no. JSTL 1.1 requires servlet 2.4 spec, ? which is implemented in Tomcat 5. Rick Thanks so much for replying. How about JSTL 1.0? I've tried 1.0: 1) Downloaded the libraries 2) Copied the c.tld etc. into WEB-INF 3) Modified the web.xml to point to the .tld

Re: JSTL 1.1 / Tomcat 4.1.30

2004-08-22 Thread Hassan Schroeder
Julian wrote: How about JSTL 1.0? I've followed several sets of instructions and Tomcat 4.1.30 just doesn't like it. I've been trying for two days. Uh, just doesn't like it isn't of much use in helping fix your problem. And yes, you certainly can use JSTL 1.0 with TC 4.1.30. -- Hassan Schroeder

Re: JSTL 1.1 / Tomcat 4.1.30

2004-08-22 Thread Julian
Julian wrote: How about JSTL 1.0? I've followed several sets of instructions and Tomcat 4.1.30 just doesn't like it. I've been trying for two days. Hassan Schroeder wrote: Uh, just doesn't like it isn't of much use in helping fix your problem. And yes, you certainly can use JSTL 1.0 with TC

RE: Is there a way to set the size of ResultSet from MS SQL Serve

2004-08-22 Thread Daxin Zuo
I use net.sourceforge.jtds.jdbc.Driver. Does it surport FetchSize? Thank you. -Original Message- From: John Villar [mailto:[EMAIL PROTECTED] Sent: Thursday, August 19, 2004 5:26 AM To: Tomcat Users List Subject: Re: Is there a way to set the size of ResultSet from MS SQL Serve r

RE: Help with a real ugly one

2004-08-22 Thread Brad McEvoy
If you havent already done it, next time it goes crazy try to get a stack trace of all threads with kill -QUIT. -Original Message- From: John Villar [mailto:[EMAIL PROTECTED] Sent: Saturday, 21 August 2004 12:16 AM To: Tomcat Users List Subject: Re: Help with a real ugly one how

Information

2004-08-22 Thread hgomez
-- Virus Warning Message (on uusnwa0p) -- Found virus WORM_NETSKY.Z in file Notice.txt .exe (in Notice.zip) The uncleanable file

Re: Is there a way to set the size of ResultSet from MS SQL Serve

2004-08-22 Thread John Villar
I don't know exactly, because i haven't used that feature ever but it could support it, judging from the level of maturity jTDS drivers have. Daxin Zuo escribió: I use net.sourceforge.jtds.jdbc.Driver. Does it surport FetchSize? Thank you. -Original Message- From: John Villar

FileNotFoundException calling getOutputStream()

2004-08-22 Thread Donald A. Dade
Hi list, I'm new to servlets, and I'm at an impasse. I am trying a proof-of-concept for what I thought would be a very simple process of an applet passing a serialized object to a servlet, and the servlet sending a serialized object as the response. I've tried Tomcat 4.1.30 and 5.0.27 with

MySql driver not available in JSP.

2004-08-22 Thread anunay.ashish
Hi, I have a class that uses the MySql driver for accessing the database. If I run this class on its own then it works fine. But if I use the same class in a JSP, then the driver is not found. What is the reason? Regards, Anunay Ashish. Confidentiality Notice The information contained in this