Re: File upload won't work with Tomcat4 ...

2001-12-20 Thread Lester June Cabrera
Try to upload to upload your data files in the apache htdocs directory and access them via your JSP files from there. This is our setup in our webhosting company. All our JSP apps are in /webapps directory. And all the rest of the files (*.html, *gif, *.jpg, *.zip) are in /htdocs. At 09:42

Re: AW: File upload won't work with Tomcat4 ...

2001-12-20 Thread Lester June Cabrera
- Von: Lester June Cabrera [mailto:[EMAIL PROTECTED]] Gesendet: Donnerstag, 20. Dezember 2001 09:45 An: Tomcat Users List; martin eberle Betreff: Re: File upload won't work with Tomcat4 ... Try to upload to upload your data files in the apache htdocs directory and access them via your JSP

Re: JSP/Servlet Web Hosting?

2001-11-12 Thread Lester June Cabrera
Try also MMA Web Hosting http://www.mmaweb.net At 09:56 PM 11/12/01 -0700, Dan Hinojosa wrote: Kattare.com C Cayetano wrote: Anyone know or can recommend a reasonable priced web hosting company that supports JSP/servlets? Thanks in advance Chris -- To unsubscribe: mailto:[EMAIL

Re: Help please...

2001-10-23 Thread Lester June Cabrera
Hi Daniel, You should be able to change the port setting in the /conf/server.xml file. !-- Normal HTTP -- Connector className=org.apache.tomcat.service.PoolTcpConnector Parameter name=handler

getDay() return value is delayed

2001-10-21 Thread Lester June Cabrera
Hi, I'm using Tomcat 3.2. I noticed that the return value of getDay() of java.util.Date is delayed by 1 week every week. First, I deployed my apps in my Linux server, I encountered this problem. Now, I transferred all my apps to our SUN server, it's the same problem. So, I have to keep on

Re: off-topic: Result Set as attribute

2001-09-26 Thread Lester June Cabrera
Hi Peter, Yes, your code is using two attribute names for every record. And the last attribute values that get saved are the those of the last record of your resultset. I would would recommend that you use hidden fields in your form with the id for each record. Lester At 11:21 AM 9/26/01

Re: Works on 8080 but not on 80, help!

2001-09-25 Thread Lester June Cabrera
is appreciated! ___ http://inbox.excite.com Lester June Cabrera Chief Programmer VinciWorks 29F 88 Corporate Center Valero St., Salcedo Village Makati City Tel: +632-889 6303 Fax: +632-889 6287 Email: [EMAIL PROTECTED

[JSP] get serial value in PostgreSQL

2001-09-25 Thread Lester June Cabrera
After adding a record in PostgreSQL with id as serial, how do I get the value of id? Thanks, Lester

Re: Deploying a Servlet using WAR

2001-09-24 Thread Lester June Cabrera
Hi Stuart, If you use the build utility that's bundled with the Tomcat package, you can set how you want your servlet called via the file /etc/web.xml. See sample value below. I have my servlet file named ServiceControl.class but I want it to be accessed as /service in the URL. servlet

Re: Change Default port 8080

2001-09-20 Thread Lester June Cabrera
Edit server.xml in tomcat/conf directory: !-- Normal HTTP -- Connector className=org.apache.tomcat.service.PoolTcpConnector Parameter name=handler value=org.apache.tomcat.service.http.HttpConnectionHandler/ Parameter name=port

Re: Session Problem

2001-09-20 Thread Lester June Cabrera
/intl.asp Lester June Cabrera Chief Programmer VinciWorks 29F 88 Corporate Center Valero St., Salcedo Village Makati City Tel: +632-889 6303 Fax: +632-889 6287 Email: [EMAIL PROTECTED] Mobile: +63915-7120430

Permission Denied Error in Linux

2001-08-30 Thread Lester June Cabrera
Hi, I tried to install Tomcat 3.2 in Linux. But when I run shell bin/startup.sh I got a Permission Denied error. These are the steps I did: 1) installed JDK 1.2.2 for Linux as root. 2) included JDK path in .bash_profile 3) set JAVA_HOME env variable in .bash_profile 4) installed Tomcat

Re: Permission Denied Error in Linux

2001-08-30 Thread Lester June Cabrera
, Lester At 12:11 AM 8/30/01 -0700, you wrote: hi lester, try chmod +x startup.sh or chmod 777 startup.sh then try sh startup.sh or ./startup.sh what flavour of linux do u have i hope it;'s not RH7.0!!! ravi On Wed, 29 August 2001, Lester June Cabrera wrote: Hi, I tried to install