RE: help: mod_jserv compilation problems

2001-01-24 Thread Deepak C S
instead of compiling ...you can directly copy(download) the mod_jserv.so and place in APACHE-ROOT/libexec directory -- From: Olaf Grewe[SMTP:[EMAIL PROTECTED]] Reply To: [EMAIL PROTECTED] Sent: Wednesday, January 24, 2001 4:54 PM To: [EMAIL PROTECTED] Subject:

RE: Locale

2001-01-24 Thread Deepak C S
Its simply the problem with Classpath or Environment variables Make sure you set 1) JAVA_HOME=jdk-installdir 2) TOMCAT_HOME=tomcatinstall 3) ANT_HOME=tomcatinstall CLASSPATH=jdk/lib and other jars and export all these variables I guess It would work then -- From:

Ironical Sun's Servlet API

2001-01-19 Thread Deepak C S
hi JSP/Java gurus, It seems ironical that sun's api doesn't have a method to retrieve Multipart-form data or am I wrong??? I want to retrieve from a HTML-form..multipart data...that is name,age,particulars etc..along with a Photo(thru file upload). For Photo,I need

File Deletion----not working

2001-01-19 Thread Deepak C S
hi, I am trying to delete a file under filesystem in a bean using: File f=new File(path-to-file); f.delete(); But the File isnt getting deleted...Can anybody help?? thanx Deeps - To

handling File upload in JSP??

2001-01-17 Thread Deepak C S
Hi , Can anybody pls tell.. How to handle File upload(binary) in JSP/beans?? what should be the Property Type in Bean to hold a Photograph...is it File? regards Deepak - To unsubscribe, e-mail:

help pls

2001-01-16 Thread Deepak C S
hi, 1)how to restrict users from accessing html files directly(without authentication) in tomcat-apache?? 2) how to prevent directory listing for directories under Tomcat context? pls help thanx, deeps - To unsubscribe,

please Help --session check

2001-01-15 Thread Deepak C S
hi people, As a part of authentication check, I am checking for a session attribute to validate user login across pages. eg: if (session.getAttr("user")==null){ sendRedirect(loginpage); } But now, I am keeping these lines in all my jsp files(cut and paste)..If I have to change somethg

Sorry--Out of topic question For Html Gurus

2001-01-10 Thread Deepak C S
hi , Does anybody know how to develop Navigation Interface like ones On microsoft.com home page,Jspinsider.com etc...?? i.e. On moving mouse cursor over a heading ,a drop down of options is displayed and on mouse Out, the dropdown is removed. Ive seen the sites View/source but not

Password encryption in Java

2001-01-08 Thread Deepak C S
Hi, Can anybody tell about" How we can encrypt Passwords in Java??"say like Perl's or Unix Crypt function?? i mean, Is there any Java equivalent of unix crypt() func?? thanx in advance, Deeps - To unsubscribe,

How to create .war files??

2001-01-05 Thread Deepak C S
hi all, can anybody tell "how to create web application archives(WAR) ...that is .war files??"eg. like examples.war in Tomcat. Im using tomcat3.2.1 on linux. thanx, deeps - To unsubscribe, e-mail: [EMAIL PROTECTED]

tomcat3.2.1 linux ArrayIndexException

2001-01-04 Thread Deepak C S
Hi, Ive started tomcat3.2.1 but each time I make a request say..http://host:8080/examples/jsp/index.html(wich i created) Im getting following error --- 2001-01-04 04:29:00 - ContextManager: Error reading request , ignored -

RE: Jserv

2001-01-04 Thread Deepak C S
if you integrating it withapache place mod_jserv.so in $APACHEHOMEDIR/libexec and add a line to httpd.conf as Include "path to tomcat-apache.conf" -- From: Andrew Burrows[SMTP:[EMAIL PROTECTED]] Reply To: [EMAIL PROTECTED] Sent: Friday, January 05, 2001 9:28 AM

tomcat install config error linux!!

2001-01-03 Thread Deepak C S
Hi, Ive just installed tomcat3.2.1 on linux and trying to run it standalone. while starting the server,Im getting FATAL:java.io.IOException: Address already in usecat-3.2.1/./webapps/examples"/t est context static) that# java.io.IOException: Address already in use

bean Constructor

2000-12-28 Thread Deepak C S
Hi , Im using a Bean with scope="session" as follows. jsp:useBean id="test" scope="session" class="MyPack.Mybean"/ I am using the same bean in many JSP pages. The Bean has a constructor which I expect to be called Only once for a session created. But the Constructor is getting

How to exit from JSP page

2000-12-26 Thread Deepak C S
Hi, Can anybody tell "how to exit from a JSP page? I want to check for a condition at beginning of a JSP page and based on result I want to skip processing rest of the JSP pagewithout using bigIf-else block I mean I need a Perl equivalent of "exit;" command in JSP.

RE: How to exit from JSP page

2000-12-26 Thread Deepak C S
of the page: % ... if (your_condition) return; ... % - Boaz -Original Message- From: Deepak C S [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 26, 2000 11:31 To: '[EMAIL PROTECTED]' Cc: '[EMAIL PROTECTED]' Subject: How to exit from JSP page Hi

RE: Tomcat and PostgreSQL

2000-12-25 Thread Deepak C S
jar" and its working fine. eg: CP=/path/to/jdbcdriverforpostgres/jdbc.jar hope this helps Deeps Thanks and Regards, Deepak C. S. Planetasia Ltd, A Microland Group Company, Bangalore,India Contact: 5522252 54 57 58 58 Extn 544 Email: [EMAIL PROTECTED] -- From: [EMAIL PR

RE: compiling mod_jserv.so fails due to apxs:Break: Command failed with rc=16777215

2000-12-25 Thread Deepak C S
for me..wish u goodluck cheers, Deeps Thanks and Regards, Deepak C. S. Planetasia Ltd, A Microland Group Company, Bangalore,India Contact: 5522252 54 57 58 58 Extn 544 Email: [EMAIL PROTECTED] -- From: Wayne F Davis[SMTP:[EMAIL PROTECTED]] Reply To: [EMAIL PROTECTED] Sent

how to include querystring in JSP

2000-12-25 Thread Deepak C S
Hi, I want to include a querystring within an HTML anchor tag eg: a href="/examples/test.jsp?name=hello world" click /a but tomcat is giving JSP parse error as: 1)test.jsp(0,4) invalid argument I even tried encoding the href as response.encodeURL("/examples/test.jsp?name=hello

RE: how to include querystring in JSP

2000-12-25 Thread Deepak C S
thanx all who replied for my quest...It worked regards deeps -- From: Ted Husted[SMTP:[EMAIL PROTECTED]] Reply To: [EMAIL PROTECTED] Sent: Monday, December 25, 2000 7:04 PM To: Tomcat User List Subject: Re: how to include querystring in JSP a

tomcatt doesnt recognize when I change my Beans source...Please HELP

2000-12-20 Thread Deepak C S
hi friends, I have Linux-apache-tomcat3.2.1. Ive have created a context "intranet" under tomcat-install/webapps/intranet and I have manually created Directories WEB-INF/classes under it. Is this a right way to do?? Please suggest. In classes dir,I have placed my JavaBeans

RE: Includes

2000-12-18 Thread Deepak C S
which was created in a constructor?? Thanx in Advance, Deepu Thanks and Regards, Deepak C. S. Planetasia Ltd, A Microland Group Company, Bangalore,India Contact: 5522252 54 57 58 58 Extn 544 Email: [EMAIL PROTECTED] -- From: Kitching Simon[SMTP:[EMAIL PROTECTED]] Reply