RE: Who uses connection pool?

2002-03-05 Thread Andrew Rodwell

Lev,

I have this impression also of Tyrex. Every servlet seems to be a new pool.
Is that your experiance. Each time the servlet runs a new connection.

Andrew

-Original Message-
From: Lev Assinovsky [mailto:[EMAIL PROTECTED]]
Sent: 05 March 2002 10:53
To: Tomcat Users List
Subject: Re: Who uses connection pool?


I am not sure Tyrex's connection pool really works.
Do you use JNDI when you work with bitmechanics staff?
If yes could you please show me that?

Reynir Hubner wrote:

 yeah you can use that one, it is good, and you have docs on it in the
 jakarta website.

 Bitmechanics pool is not only for GSP. I've never used GSP, but I have
 used the JDBC-pool alot.
 it's good for most drivers, I've only had problems using it with DB2
 drivers.

 hope it helps,
 [EMAIL PROTECTED]

  -Original Message-
  From: Lev Assinovsky [mailto:[EMAIL PROTECTED]]
  Sent: 5. mars 2002 09:37
  To: Tomcat Users List
  Subject: Re: Who uses connection pool?
 
 
  I already looked in there.
  I was confused that their pool is for GSP.
  Tomcat uses Tyrex by default. How about that?
 
  Reynir H?bner wrote:
 
   sure
   check out bitmechanic.com, thats a fine place to start.
  
   -hope it helps
   [EMAIL PROTECTED]
  
-Original Message-
From: Lev Assinovsky [mailto:[EMAIL PROTECTED]]
Sent: 5. mars 2002 09:09
To: 'Tomcat Users List'
Subject: Who uses connection pool?
   
   
Hi!
Could you tell me please,
does anybody successfully use database connection pool?
   
   
--
Lev AssinovskyPeterlink Web
ProgrammerSt. Petersburg, Russia
Tel/Fax: +7 812 3275343   197022 ul.Chapigina 7Ё
E-mail: [EMAIL PROTECTED]
   
   
   
   
--
To unsubscribe:
  mailto:[EMAIL PROTECTED]
For additional commands:
  mailto:[EMAIL PROTECTED]
Troubles with the list:
  mailto:[EMAIL PROTECTED]
   
   
 
  --
  Lev AssinovskyPeterlink Web
  ProgrammerSt. Petersburg, Russia
  Tel/Fax: +7 812 3275343   197022 ul.Chapigina 7Á
  E-mail: [EMAIL PROTECTED]
 
 
 
 
  --
  To unsubscribe:   mailto:[EMAIL PROTECTED]
  For additional commands: mailto:[EMAIL PROTECTED]
  Troubles with the list: mailto:[EMAIL PROTECTED]
 
 

 --
 To unsubscribe:   mailto:[EMAIL PROTECTED]
 For additional commands: mailto:[EMAIL PROTECTED]
 Troubles with the list: mailto:[EMAIL PROTECTED]

--
Lev AssinovskyPeterlink Web
ProgrammerSt. Petersburg, Russia
Tel/Fax: +7 812 3275343   197022 ul.Chapigina 7Á
E-mail: [EMAIL PROTECTED]




--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]



Unable to compile class for JSP

2002-02-27 Thread Andrew Rodwell

Hi,

I am trying to use a bean in my jsp.

jsp:useBean id='lineB' scope='page' class='fwLine' type=fwLine  /

when it is run I get the following.

org.apache.jasper.JasperException: Unable to compile class for JSP

An error occurred at line: 9 in the jsp file: /fwView.jsp

Generated servlet error:
C:\tomcat\work\localhost\_\fwView$jsp.java:61: Class org.apache.jsp.fwLine
not found.
fwLine lineB = null;
^


An error occurred at line: 9 in the jsp file: /fwView.jsp

Generated servlet error:
C:\tomcat\work\localhost\_\fwView$jsp.java:64: Class org.apache.jsp.fwLine
not found.
lineB= (fwLine)
^


An error occurred at line: 9 in the jsp file: /fwView.jsp

Generated servlet error:
C:\tomcat\work\localhost\_\fwView$jsp.java:69: Class org.apache.jsp.fwLine
not found.
lineB = (fwLine)
java.beans.Beans.instantiate(this.getClass().getClassLoader(), fwLine);

it seems to expect my bean to be in org.apache.jsp. 

have I missed something on the setup, like in web.xml

Thank you for any help.

Andrew

 



RE: ClassNotFoundException

2002-02-27 Thread Andrew Rodwell

Thanks to all who answerd.

That was my problem.

Cheers,
Andrew


--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]





Re: Unable to compile class for JSP not ClassNotFoundException

2002-02-27 Thread Andrew Rodwell

Sorry wrong subject


--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]





Running tomcat port 80

2002-02-18 Thread Andrew Rodwell

Hi ,

We are trying to get TOMCAT 4.0 to run on the default web port - and can do
it ok on windows.

However when we try the same changes on SuSE Linux 7.3 it will not run.

Somebody suggested that we start it under root - when we try this the
commands are not found.

You might have guessed we are noew to Linux - any ideas?

Regards

Andrew

To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




RE: Running tomcat port 80

2002-02-18 Thread Andrew Rodwell

Hi, 

Thanks for the reposnses.

We have tried various things. Making the previous user who ran tomcat a
member of the root group. That does not work. 

We have set permissions on the tomcat directory to be root.

We then log on as root and have set the java home and catalina home in the
catalina.sh file. Navigate to the bin directory and try to run startup.sh
and command is not found.

I realise this is a linux question but any help would be appreciated.

thanks.

-Original Message-
From: Renato Romano [mailto:[EMAIL PROTECTED]]
Sent: 18 February 2002 10:52
To: Tomcat Users List
Subject: R: Running tomcat port 80


You have to run Tomcat as root, because port 80 is reserved on UNIX systems
for use by the superuser;
Probably root can't find the commands because you have to adjust the
environment... just check $PATH, $CATALINA_HOME and $JAVA_HOME of the user
you previosly used to run TOMCAT, and set them approriately for the root
user ...

-Messaggio originale-
Da: Andrew Rodwell [mailto:[EMAIL PROTECTED]]
Inviato: lunedì 18 febbraio 2002 11.14
A: Tomcat Users List
Oggetto: Running tomcat port 80


Hi ,

We are trying to get TOMCAT 4.0 to run on the default web port - and can do
it ok on windows.

However when we try the same changes on SuSE Linux 7.3 it will not run.

Somebody suggested that we start it under root - when we try this the
commands are not found.

You might have guessed we are noew to Linux - any ideas?

Regards

Andrew

To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]



RE: Running tomcat port 80

2002-02-18 Thread Andrew Rodwell

Hi,

Thanks for the reposnses.

We have tried various things. Making the previous user who ran tomcat a
member of the root group. That does not work.

We have set permissions on the tomcat directory to be root.

We then log on as root and have set the java home and catalina home in the
catalina.sh file. Navigate to the bin directory and try to run startup.sh
and command is not found.

I realise this is a linux question but any help would be appreciated.

thanks.




RE: Running tomcat port 80

2002-02-18 Thread Andrew Rodwell

Markus,

Thank you for that. Our inexperiance of linux was showing. We have managed
on windows 2000 and OS/400 to run tomcat but linux is a new beast.

Regards. 

-Original Message-
From: Markus Bengts [mailto:[EMAIL PROTECTED]]
Sent: 18 February 2002 11:49
To: Tomcat Users List
Subject: RE: Running tomcat port 80


On Mon, 18 Feb 2002, Andrew Rodwell wrote:

 We have tried various things. Making the previous user who ran tomcat a
 member of the root group. That does not work.

 We have set permissions on the tomcat directory to be root.

 We then log on as root and have set the java home and catalina home in the
 catalina.sh file. Navigate to the bin directory and try to run startup.sh
 and command is not found.

Did you run it with the command:
./startup.sh
?

Markus


--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]