RE: applet to servlet problem - JVM problem ?

2002-03-10 Thread tamir
Hi, I've checked again my applet and ensured that I'm calling openConnection each time. However, I've discovered that when I'm running this applet using java-plugin it works well(all the servelt requests are called simoulatnously). Nevertheless, I still would like it to work without the plug-in.

Problems with mod_webapp and right deploying

2002-03-10 Thread Philip M. Meier
Hello List, I've Tomcat 4.02 and Apache 1.3.20 running on my system connected with mod_webapp. Everything runs very well, but there is a big problem. I've connected Apache and Tomcat with the following directives: WebAppConnection conn warp localhost:8008 WebAppDeploy

RE: IE 5 on Mac is incompatible with TC 4?

2002-03-10 Thread Rob Cartier
How would you do that if you are using Form authentication and the web.xml file directs them to a loginpage before they access the index.jsp Have the same problem and found that If they accept session cookies then all is ok Your help would be greatly appreciated. -Original Message-

Keep-Alive. Was: IE 5 on Mac is incompatible with TC 4?

2002-03-10 Thread Anders Rundgren
Rob, I'm not sure I understand what you want, but regarding session cookies, IE5/Mac and SSL, I think that the problem is that TC 4 does not seem to automatically support persistant TCP-connections which both gives bad performance, and confuses at least one browser to the extent that it stops

RE: Keep-Alive. Was: IE 5 on Mac is incompatible with TC 4?

2002-03-10 Thread Rob Cartier
I am trying to use encodeURL for all my href's and login page but I get: Apache Tomcat/4.0.2 - HTTP Status 400 - Invalid direct reference to form login page type Status report message Invalid direct reference to

Re: how not to run servlet as root

2002-03-10 Thread Mark Himsley
Include something like the following in a startup script. This I run as root and you can see that it changes user to 'httpd' (the user my web server runs under) and then starts catalina. It works very well, at least for me. su - httpd -c $CATALINA_HOME/bin/catalina.sh start Good luck. On Fri,

mod_webapp.so error duplicate connection name

2002-03-10 Thread Greg Munger
I just started following this list, but I have tried to look in the archives and in deja news for an explanation for the duplicate connection name error. This error occurs when I restart Apache. I am using a hosted server where I do not have root. Currently tomcat 4.0.1 and apache 1.3 are

Re: Apache + Tomcat

2002-03-10 Thread kuma
Hey i found this site very inspiring check it out , try server-side articles , http://www.devshed.com/ Best of luck Chuckie Out Gang Wu wrote: Hi, I wonder where i can find doc for installing Apache as web sever and plug in Tomcat as servlet container only. Or Can anyone please give me a

Tomcat questions (long)

2002-03-10 Thread JavaJosh
Hi List, I am interested in building a data driven web app with Tomcat 4.0 and JSP/Servlets, but am new to the field, and have lots of questions. Some are general, some are specific to Tomcat. Please be patient, as I am new. Here it goes: System design: It seems that managing client state

Tomcat 3.3a - error-page context problem

2002-03-10 Thread Chris Murphy
Hello, I'm having quite a bit of trouble figuring this one out. I have Tomcat 3.3a installed with Apache mod_jk support. I've declared a virtual host under tomcat in file apps-x.x.x.x.xml: ?xml version=1.0 encoding=ISO-8859-1? Server Host name=www.somewhere.com Context path=/xxx

subscription???

2002-03-10 Thread Kurt Kurniawan
Hello World ! Please ignore if everything's all right... I'm suddenly stopped receiving mail from this mailing-list. I'm just wondering why? Have I been automatically unsubscribed * - NOTICE - The

Running servlet from folder within WEB-INF?

2002-03-10 Thread Leon Vermaak
Sorry but I don't know how best to fraze the question I have I will try to better explain myself. I am new to Tomcat I am on Windows 2000 Professional platform. I compiled the simplest of servlets! I created the following a folder %CATALINA_HOME%/webapps/project/WEB-INF/classes/SERVLET_NAME I

Re: How can I resolve this IllegalStateException: Response has alrea dy been committed problem?

2002-03-10 Thread Vinay Urs
we had encountered the same problem... the solution is to clear the output buffer before re-directing the page in case of errors, u need to put the following out.clearBuffer(); before your re-directions... --- [EMAIL PROTECTED] wrote: [TOMCAT-3.3 JDK 1.3.1 WIN 2000] Hi everyone, I have

Help in JDBC

2002-03-10 Thread Neo Gigs
hi there, I had the following codes on my JSP page: html headtitleStored Procedure Call using JDBC/title/head body To test JDBC call to fire stored procedure named bsp_GetClatTypeIE/b %! Class.forName(oracle.jdbc.driver.OracleDriver); % % page language=java import=java.sql.*, java.math.*,

Unix (Solaris) HTML Editor for Apache and Tomcat, Recommendations?

2002-03-10 Thread C Cayetano
All, Does any have a suggestion of a good unix based HTML editor, similar to Dreamweaver, that can handle the HTML WYSIWYG interface as well as the ability to edit code for JSP scripting? Thanks -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED]

Re: Unix (Solaris) HTML Editor for Apache and Tomcat, Recommendations?

2002-03-10 Thread Neo Gigs
Personally I would suggest Forte for Sun - Original Message - From: C Cayetano [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Monday, March 11, 2002 12:24 PM Subject: Unix (Solaris) HTML Editor for Apache and Tomcat, Recommendations? All, Does any have a

RE: Unix (Solaris) HTML Editor for Apache and Tomcat, Recommendations?

2002-03-10 Thread Brian Adams
netbaens! it will do that and more (java) when you are ready for servlets! :) www.netbeans.org -Original Message- From: C Cayetano [mailto:[EMAIL PROTECTED]] Sent: Sunday, March 10, 2002 10:25 PM To: Tomcat Users List Subject: Unix (Solaris) HTML Editor for Apache and Tomcat,

RE: Help in JDBC

2002-03-10 Thread Martin Sandiford
The %! directive is strictly for declarations. The Class.forName() line is a statement. You can change this in to a statement trivially thus: Class driver = Class.forName(blahblah); Tomcat (any jsp compiler?) will put the contents of %! directives in the class body for the jsp page (ie

RE: Help in JDBC

2002-03-10 Thread Cyber Sagar
Your reply helped me alot. Thank you very much -Original Message- From: Martin Sandiford [mailto:[EMAIL PROTECTED]] Sent: 11 March 2002 13:43 To: Tomcat Users List Cc: Neo Gigs Subject: RE: Help in JDBC The %! directive is strictly for declarations. The Class.forName() line is a

Re: Help in JDBC

2002-03-10 Thread Neo Gigs
thanks for replying my post so fast, but i m confused due to i m new in this, can you modify my codes so that let it works? and also show me how to set the settings u mentioned? thanks a zillion:D - Original Message - From: Martin Sandiford [EMAIL PROTECTED] To: Tomcat Users List

Re: AW: apache or tomcat

2002-03-10 Thread Scott Ahten
Is is a known bug? Can someone point me to a Bug ID for this? I'm about to purchase a certificate for Tomcat standalone, but I may have to make other plans if there are SSL problems with versions of IE5.0. ~Scott Lauer, Oliver wrote: In addition: The only problem with TC/SSL (standalone) is

RE: Tomcat questions (long)

2002-03-10 Thread JavaJosh
Thanks for the quick response Yu-Meng. I am reading now... -Original Message- From: Yu-Meng Chong [mailto:[EMAIL PROTECTED]] Sent: Sunday, March 10, 2002 5:26 PM To: Tomcat Users List Subject: Re: Tomcat questions (long) Hi Josh ! I can help you out with the first part of

[Coyote] Coyote 1.0 Beta 1 available

2002-03-10 Thread Remy Maucherat
The first beta of Coyote 1.0 is now available, and includes: - A high performance HTTP/1.1 connector - An adapter for Tomcat 4.0.x (an adapter for Tomcat 3 is in development, and should be available in Beta 2) Binaries can be downloaded at:

Re: Help in JDBC

2002-03-10 Thread Neo Gigs
hi there, after modifying my codes like this: html headtitleStored Procedure Call using JDBC/title/head body To test JDBC call to fire stored procedure named bsp_GetClatTypeIE/b %@ page language=java import=java.sql.*, java.math.*, java.io.* % % String output = ; try{ Class

RE: Help in JDBC

2002-03-10 Thread Cyber Sagar
Dear Neo Gigs, Thank you very much for your kind cooperation. Yours Sagar -Original Message- From: Neo Gigs [mailto:[EMAIL PROTECTED]] Sent: 11 March 2002 14:54 To: Tomcat Users List Subject: Re: Help in JDBC hi there, after modifying my codes like this: html headtitleStored

Apache/Tomcat performance ...

2002-03-10 Thread Julien OIX
hi everyone, using mod_webapp to connect Tomcat and Apache, I'm asking a question: even gif's and jpeg's being served by tomcat (mod_webapp catching every request), does apache have some utility in this config ? I was told that a tomcat's weakness was serving images ... A solution would be to

Re: Help in JDBC

2002-03-10 Thread Neo Gigs
Hi there, I solved the problem by putting my classes111.zip for Oracle to %tomcat_home%\lib and %my_application%\WEB-INF\lib Thanks Regards, Neo Gigs VB? http://communities.msn.com.my/VisualBasicwithNeo http://www.vbcity.com/forum http://www.vbweb.co.uk Get paid cash receive email?

HOW-TO: Persistent Environment Variables

2002-03-10 Thread C Cayetano
All, How/Where do I set the environment variables so that they remain, even logged off. I currently login as 'root', set the variables using: eg. TOMCAT_HOME=/usr/local/tomcat403 export TOMCAT_HOME OS: Solaris 8 I then log off and log back in and the variables aren't there. Using 'env' to