RE: How download file from servlet?

2001-09-06 Thread Martin van den Bemt
There is already a _response.getWriter() or getOutputStream() before your code snippet Mvgr, Martin > -Original Message- > From: Evgeniy Strokin [mailto:[EMAIL PROTECTED]] > Sent: Thursday, September 06, 2001 5:44 PM > To: Tomcat-User@Jakarta. Apache. Org > Subjec

RE: startup.sh not recognized

2001-12-28 Thread Martin van den Bemt
chmod +x startup.sh to make the file excecutable.. Mvgr, martin -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Michael Burke Sent: Friday, December 28, 2001 01:08 To: [EMAIL PROTECTED] Subject: startup.sh not recognized When I try to run startup.sh I

RE: Help needed with package access

2002-01-07 Thread Martin van den Bemt
try using javac -cp . Good thing is also to read something on how java works, since this is MUST know if you even want to start thinking about java.. Mvgr, Martin -Original Message- From: Drinkwater, GJ (Glen) [mailto:[EMAIL PROTECTED]] Sent: Monday, January 07, 2002 17:15 To: [EMAIL

RE: Newbie mod_webapp/Oracle/jndi question

2002-01-09 Thread Martin van den Bemt
About the apache to tomcat directly to the httpconnector : use the proxy module in tomcat (see the tomcat_docs on how to do that). As for oracle : cannot help you there.. Mvgr, Martin -Original Message- From: Barry Roberts [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 08, 2002 22:47

RE: Newbie mod_webapp/Oracle/jndi question

2002-01-09 Thread Martin van den Bemt
proxy module in apache of course ;) -Original Message- From: Martin van den Bemt [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 09, 2002 15:05 To: Tomcat Users List Subject: RE: Newbie mod_webapp/Oracle/jndi question About the apache to tomcat directly to the httpconnector : use

RE: Shared jars of multiple web apps

2002-01-09 Thread Martin van den Bemt
Make a symolic link to the WEB-INF/lib directory (although I don't use it myself, it could work.) Mvgr, Martin -Original Message- From: Ming Zhou [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 09, 2002 21:09 To: 'Tomcat Users List' (E-mail) Subject: Shared jars of mu

RE: Auto starting Tomcat during boot?

2002-01-11 Thread Martin van den Bemt
Set the java_home in the startupscript (or catalina.sh or whatever place you prefer). Mvgr, Martin > -Original Message- > From: Nelson Yip [mailto:[EMAIL PROTECTED]] > Sent: Friday, January 11, 2002 18:49 > To: 'Tomcat Users List' > Subject: RE: Auto st

RE: Auto starting Tomcat during boot?

2002-01-11 Thread Martin van den Bemt
rc.local definitely not, since it is executed after the other scripts. I think the rc.sysinit can be succesfull (never tried that actually, but it is setting some variables like HOSTNAME, so..) Mvgr, Martin > -Original Message- > From: Nelson Yip [mailto:[EMAIL PROTECTED]]

RE: Tomcat 4.0.1 Suse 7.2 Can't Get It To Work In Stand Alone Mode

2002-01-15 Thread Martin van den Bemt
Maybe your firewall is too strict, or ping localhost doesn't work? (add it to /etc/hosts if it doesn't..) Mvgr, Martin > -Original Message- > From: Steve [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, January 15, 2002 03:32 > To: Tomcat Users List > Subject: Re: To

RE: Using request.getRemoteAddr() with tomcat

2002-01-15 Thread Martin van den Bemt
Let the development tomcats not run under localhost but under the network ip adres (at least if that doesn't give you any security issues). Seems the only solution in my eyes (don't have your app, so there could be better ones..) Mvgr, Martin > -Original Message- > Fr

RE: What is the manager password?

2002-01-15 Thread Martin van den Bemt
you have to set up a manager account yourself in CATALINA_HOME/conf/tomcat-users.xml Mvgr, Martin > -Original Message- > From: August Detlefsen [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, January 16, 2002 00:49 > To: Tomcat Users List > Subject: What is the m

RE: Newbie Advice needed - Developping Environment

2002-01-17 Thread Martin van den Bemt
Just use netbeans, almost all of the enterprise edition is added to the netbeans core on which forte is build. Mvgr, Martin > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: Thursday, January 17, 2002 12:45 > To: Tomcat Users List > Subj

RE: Mod_webApp Configuration - Tomcat 4.01, Apache 1.3.22 (Darwin)

2002-01-21 Thread Martin van den Bemt
(which I do), which contains some fixes regarding automatic deployment of webapps when they are not available at startup of apache (the order of starting httpd and tomcat is not important anymore). In the "old" webapp you have to start tomcat before apache to get requests thro

RE: jdk processes

2002-01-21 Thread Martin van den Bemt
y 30 minutes. As far as I know, every session has is thread.. So that might explain the high number of threads.. Mvgr, Martin -- To unsubscribe: <mailto:[EMAIL PROTECTED]> For additional commands: <mailto:[EMAIL PROTECTED]> Troubles with the list: <mailto:[EMAIL PROTECTED]>

RE: RE: jdk processes

2002-01-21 Thread Martin van den Bemt
ften the session are checked. In Apache JServ, I recall > something like checkInterval in the zone.properties file. Maybe > TC4 is cleverer onthat one. I don't know where it is in tc4, but I guess it is in the server.xml (don't have huge loads here ;((... Mvgr, Martin -- To unsubscribe: <mailto:[EMAIL PROTECTED]> For additional commands: <mailto:[EMAIL PROTECTED]> Troubles with the list: <mailto:[EMAIL PROTECTED]>

RE: basic servlet move doesn't work

2002-01-21 Thread Martin van den Bemt
Is dir your package name and is the servlet in the webapp or in a jar (read something about tc4 not recognizing servlets in jars outside of the webapp) Mvgr, Martin > -Original Message- > From: Cressatti, Dominique [mailto:[EMAIL PROTECTED]] > Sent: Monday, January 21, 2002 1

RE: IIS or Apache

2002-01-21 Thread Martin van den Bemt
Ever heard of managers ;) > -Original Message- > From: Cressatti, Dominique [mailto:[EMAIL PROTECTED]] > Sent: Monday, January 21, 2002 18:08 > To: Tomcat Users List > Subject: RE: IIS or Apache > > > From stability/bugs/security point of view the choice is easy, > use apache. > Why on ea

RE: IIS or Apache

2002-01-22 Thread Martin van den Bemt
huge newsgroup with this topic I guess... Mvgr, Martin > -Original Message- > From: Cressatti, Dominique [mailto:[EMAIL PROTECTED]] > Sent: Monday, January 21, 2002 18:31 > To: Tomcat Users List > Subject: RE: IIS or Apache > > > >>Ever heard of managers ;) &

RE: READER to InputStream

2002-01-24 Thread Martin van den Bemt
Stuff your readers content in an array and open an InputStream with the array...(ByteArrayInputStream takes an array as a constructor) You have to play around with it though, since it could be that it needs some conversion of some sort to corrrectly end up in the inputstream.. Mvgr, Martin

RE: JDBC drivers

2002-01-24 Thread Martin van den Bemt
just rename the file, you don't have unzip and rejar it (a jar is a zip file..) Mvgr Martin > -Original Message- > From: John Wadkin [mailto:[EMAIL PROTECTED]] > Sent: Thursday, January 24, 2002 14:35 > To: Tomcat Users List (E-mail) > Subject: JDBC drivers >

RE: READER to InputStream

2002-01-24 Thread Martin van den Bemt
As I said, you have to play with it.. You can always stuff the array in a String and do a getBytes() afterwards ;)) Mvgr, Martin > -Original Message- > From: Lauer, Oliver [mailto:[EMAIL PROTECTED]] > Sent: Thursday, January 24, 2002 14:20 > To: 'Tomcat Users Li

RE: Tomcat / SOAP

2002-01-24 Thread Martin van den Bemt
see http://xml.apache.org/soap/docs/index.html for a soap implementation.. Mvgr, Martin > -Original Message- > From: Loïc Lefèvre [mailto:[EMAIL PROTECTED]] > Sent: Thursday, January 24, 2002 14:43 > To: Mailing List Tomcat > Subject: Tomcat / SOAP > > > Hi,

RE: Problems with .exe install for NT

2002-01-31 Thread Martin van den Bemt
Maybe I am mistaking, but I think I read somewhere that the windows installer doesn't recognize the jdk 1.4. Maybe checking the archives for this will find you an answer on how to solve that. Mvgr, Martin > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROT

RE: NullPointerException: causes?

2002-01-31 Thread Martin van den Bemt
Looks like the DriverManager is returning null, so dbCcon is null. (line 217). So probably something is wrong in setting up the connection. Mvgr, Martin > -Original Message- > From: John Wadkin [mailto:[EMAIL PROTECTED]] > Sent: Thursday, January 31, 2002 18:41 > To: Tomca

RE: NullPointerException: causes?

2002-01-31 Thread Martin van den Bemt
e() to the finally, so the stream to the browser is actually closed. Mvgr, Martin > -Original Message- > From: John Wadkin [mailto:[EMAIL PROTECTED]] > Sent: Thursday, January 31, 2002 19:35 > To: 'Tomcat Users List' > Subject: RE: NullPointerException: causes? >

RE: Tomcat 3.3 getRemoteHost always returns "localHost" - Is there any 3.3 production version has patch applied

2002-01-31 Thread Martin van den Bemt
Use the cvs version. Works perfectly fine in production environments and is very stable.. (running here without any problems) Mvgr, Martin > -Original Message- > From: Jayakumar Duraisamy [mailto:[EMAIL PROTECTED]] > Sent: Thursday, January 31, 2002 20:22 > To: [EMA

RE: why use mod_webapp?

2002-01-31 Thread Martin van den Bemt
How about firewalls that most companies have that do not allow insternet traffic on a port different then 80 ? Could be a lot of users that you are missing that way ;) Mvgr, Martin > -Original Message- > From: Dave North [mailto:[EMAIL PROTECTED]] > Sent: Thursday, January 31

RE: Tomcat 3.3a & IIS & JDBC

2002-02-07 Thread Martin van den Bemt
put the jar file in the WEB-INF/lib directory of your webapp.. Mvgr, Martin > -Original Message- > From: Martin Jussel [mailto:[EMAIL PROTECTED]] > Sent: Thursday, February 07, 2002 18:42 > To: [EMAIL PROTECTED] > Subject: Tomcat 3.3a & IIS & JDBC > >

RE: TOMCAT 4.0 on port 80

2002-02-08 Thread Martin van den Bemt
You have to be root to startup tomcat under port 80. Mvgr, martin > -Original Message- > From: Kevin Passey [mailto:[EMAIL PROTECTED]] > Sent: Friday, February 08, 2002 12:23 > To: Tomcat Users List > Subject: TOMCAT 4.0 on port 80 > > > Hi all, > > W

RE: VAJava and Tomcat

2002-02-12 Thread Martin van den Bemt
Maybe it is an option to upgrade to eclipse, which has a tomcat module integrated. Mvgr, Martin > -Original Message- > From: Patria Lukman [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, February 12, 2002 16:23 > To: [EMAIL PROTECTED] > Subject: VAJava and Tomcat >

RE: Compilation error with ant...

2002-02-14 Thread Martin van den Bemt
javadoc is rather verbose while generating (in this case it doesn't know where the javadoc of the jdk can be found..) Mvgr, Martin > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf Of Jean-Luc BEAUDET > Sent: Thursday, February 14

RE: Upgrade to JDK1.4 --> unable to compile JSPs

2002-03-07 Thread Martin van den Bemt
it doesn't indeed, because if you that you would be breaking license rules. Mvgr, Martin > -Original Message- > From: Attila Szegedi [mailto:[EMAIL PROTECTED]] > Sent: Thursday, March 07, 2002 16:01 > To: Tomcat Users List > Subject: Re: Upgrade to JDK1.4 -->

RE: Forte user with Tomcat 3.2 installation problem under Linux

2002-03-08 Thread Martin van den Bemt
You have to untar it on your linux box, because of line conversions in text files. Mvgr, Martin > -Original Message- > From: Burt Gildenhuys [mailto:[EMAIL PROTECTED]] > Sent: Friday, March 08, 2002 14:31 > To: [EMAIL PROTECTED] > Subject: Forte user with Tomcat 3

Problem with redirection for Tomcat Basic Authentication

2005-05-23 Thread Javier Santos Martin-Moreno
Hello, I am running Tomcat 5.5.9 on Windows 2000. I configured the ISAPI redirector (version 1.2.12) so that Tomcat worked along with IIS and everything seemed to work fine, but... I have a Tomcat application which requires basic authentication. Everything works fine if I access from http://local

jsp can´t find tag library file.

2001-01-29 Thread Antillon Reyes Rafael Martin - EXT
Hi all.   My problem is that the jsp i run can´t find the tld i specified. I´ve tried some things, but i don´t know what to do. This is the code:   <%@ taglib uri="csajsp-taglib.tld" prefix="csajsp" %> Where does the file has to be? what else do i have to specify in tomcat 3.1, wich is

Apache - tomcat interaction

2001-02-04 Thread Ajayi-Obe, Martin - SAN FRANCISCO
ould I do to make it work? Pls respond. Thanx Martin - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email: [EMAIL PROTECTED]

Problem with Error 503.

2001-02-06 Thread Antillon Reyes Rafael Martin - EXT
I´m gettin constantly an Error 503 qhen i run a servlet, but it has no errors executing any other servlet. Any idea what happens?Rafael Antillón Reyes I´ll appreciate your help Grupo Vitro Tel. 3-29-17-00 Ext. 2966 [EMAIL PROTECTED] ICQ# 61057293 ---

bad configuration

2001-01-17 Thread Antillon Reyes Rafael Martin - EXT
Hi everyone. I don´t know why but i can´t get to run any servlet, altough i can run the examples (http://localhost:8080/examples/servlet/HelloWorldExample) and the file i want to run (HelloWorld.class) runs if i put it in the same directory than HelloWorldExample. My question: How do i confi

getting parameters from web.xml.

2001-01-18 Thread Antillon Reyes Rafael Martin - EXT
Good Morning Everyone: How do i configure or where do i have to put files to make this work out? I took the example from "Core Servlets and JavaServer Pages": I have a ShowMessage.class file that gets via parameters from web.xml like this: public void init(ServletConfig config) throws

getting parameter from web.xml

2001-01-18 Thread Antillon Reyes Rafael Martin - EXT
Good Morning Everyone: How do i configure or where do i have to put files to make this work out? I took the example from "Core Servlets and JavaServer Pages": I have a ShowMessage.class file that gets via parameters from web.xml like this: public void init(ServletConfig config) throws

what is a .war file??

2001-01-18 Thread Antillon Reyes Rafael Martin - EXT
I´m kinda new, so, can you tell me what is or where to find something related to .war files? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email: [EMAIL PROTECTED]

RE: HELP WITH FIRST APPLICATION.............

2001-01-22 Thread Antillon Reyes Rafael Martin - EXT
I have tomcat 3.1.1 and my directory look like this: c:/jakarta-tomcat/webapps/project/WEB-INF c:/jakarta-tomcat/webapps/project/WEB-INF/classes c:/jakarta-tomcat/webapps/project/WEB-INF/lib and in server.xml in the conf directory: and i call them like this: http://localh

starting tomcat from tcl

2001-08-21 Thread Held Martin ICM N MC MI E6
Does anybody have an idea what the problem could be??? Thanks! Martin

AW: starting tomcat from tcl

2001-08-22 Thread Held Martin ICM N MC MI E6
the solution of the problem (in case anybody is interested): CLASSPATH contained jsdk.jar which contained an old version of the ServletException class. The mentioned problem disappears if jsdk.jar is removed from, or put at the end of CLASSPATH. Martin > -Ursprüngliche Nachricht- &g

<    4   5   6   7   8   9