OT: where javax.sql.*

2002-05-06 Thread rainer jünger
Hi, I don't know where I can get teh javax.sql.* package from. It is not part of servlet.jar. But where is it?? thanks, rainer

Re: where javax.sql.*

2002-05-06 Thread rainer jünger
AFAIK, package javax.sql is part of JDK 1.4. Yes, you are right! JDK 1.4 but not JDK 1.3 thanks, rainer -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: where javax.sql.*

2002-05-06 Thread rainer jünger
Hi, A javax.sql.* implementation is commonly included in a JDBC driver package (i.e. classes12.zip, Oracle JDBC driver). not with my MySQL JDBC Driver 2.0.12 : ( R. -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: where javax.sql.*

2002-05-06 Thread rainer jünger
Hi, well, I am using the MySQL JDBC driver since a while But it does not include the packages javax.sql.* course I need the javax.sql.DataSource class. thanks, R. not with my MySQL JDBC Driver 2.0.12 : ( R. .sql classes are classes to get data from a JDBC driver, If U're

Re: where javax.sql.*

2002-05-06 Thread rainer jünger
In Jdk1.3 it is a separate download for the jdbc extensions. Here is the link: thats the best solution! thanks rainer -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

implicit object servlet

2002-05-06 Thread rainer jünger
Hi, what is the equivalent object to servlet within a Taglib-class? I want to use the methode: servlet.findDataSource(null) in a Taglib-class thanks Rainer

implicit object servlet

2002-05-06 Thread rainer jünger
Hi, what is the equivalent implicit object to servlet within a Taglib-class? I want to use the methode: servlet.findDataSource(null) in a Taglib-class thanks Rainer

data-sources configuration

2002-05-06 Thread rainer jünger
Hi, we are using the pooling of Struts. I know there are better ones. But we think it should do before the new release(1.1) is out. I am having a question on two attributes within the data-source tag of the struts-config.xml file 1) There are two values to be set: maxCount=40

FileLogger Question

2002-04-30 Thread rainer jünger
Hi, we would like to have a log directory for every virtual host running on our box. Therfore we where setting up the Logger/ tag within the server.xml File to the following values: Logger className=org.apache.catalina.logger.FileLogger directory=/home/wwa-m/public_html/docroot/WEB-INF/log/

server.xml question

2002-04-30 Thread rainer jünger
Hi, I asked the same question some hours ago already but no one responded. Is my question so difficult or can no one understand it ??? We would like to have a log directory for every virtual host running on our box. Therfore we were setting up the Logger/ tag within the server.xml file to the

Re: server.xml question

2002-04-30 Thread rainer jünger
thanks Roger, well the misspelling was happend only in the email. In the server.xml it is spelled correctly... rainer jünger Is it as simple as you misspelled suffix? Roger Whitcomb Computer Associates Senior Software Engineer Development Phone: +1 408 965 8653 FAX: +1 408 965 8805

Re: server.xml question

2002-04-30 Thread rainer jünger
will be placed. If a relative path is specified, it is interpreted as relative to $CATALINA_HOME. If no directory attribute is specified, the default value is logs (relative to $CATALINA_HOME). so it should definately be possible to write logs somewhere else ?! rainer jünger -- To unsubscribe

Re: server.xml question

2002-04-30 Thread rainer jünger
Hi Roger, - Are the permissions set correctly for your directory? that was the reason (stupid me!) chmod 777 ... solved the problem is it normal that there are only very view infos being writen in?? I thougt it is also the access log and the error log? Sofar there are only infos concerning

default forward/

2002-04-26 Thread rainer jünger
Hi, I would like to forward to a certain path when all the other options (like action/action or ohter forwards/) within the action.xml were past without maching. Has this someone realized so far? thanks, Rainer

sorry, wrong list!! default forward/

2002-04-26 Thread rainer jünger
Hi, I would like to forward to a certain path when all the other options (like action/action or ohter forwards/) within the action.xml were past without maching. Has this someone realized so far? thanks, Rainer

Confusion about ConnectionPooling with Tomcat 4

2002-04-18 Thread rainer jünger
Hi, I am getting a little confused about the topic weather Tomcat 4.x ist having a Connection Pooling implementet or not. I was following the discussions the last few days and the answers have been a little contradicting. Therfore my question loud and clear ; ) Is there a Connection Pooling

compatibility Tomact 3.3.1 and 4.x

2002-04-11 Thread rainer jünger
Hi, We are running applications on Tomcat 3.3.1 but want to update to 4.x to use new featrues for future projects. 1) What are the incompatibilities and how is your experiance by doing this? 2) Can someone run 3.3.1 and 4.x on _ONE_ box parallel? thanks, rainer juenger

Re: Tomcat 4.x and Database Connection Pooling

2002-04-10 Thread rainer jünger
Hi Ric, Struts provides a basic Connection Pool, but user comments suggest that this is not suitable for large-scale, high-traffic applications, and also that it will soon be removed from Struts in favour of a container-managed connection pool So what will Tomcat Users do? Will Tomcat get a

Re: Tomcat 4.x and Database Connection Pooling

2002-04-10 Thread rainer jünger
Hi Craig, So what will Tomcat Users do? Will Tomcat get a container manages connection pool? http://jakarta.apache.org/tomcat/tomcat-4.0-doc/jndi-resources-howto.html What is the reason for removing it form Struts? That was a hypothetical example of a possible future situation that

Re: Tomcat 4.x and Database Connection Pooling

2002-04-10 Thread rainer jünger
Hi Jim, If you are looking for connection pooling which will work with any database check out DbConnectionBroker at http://www.javaexchange.com/ DbConnectionBroker is only providing as the developer calls it a 2 Tier model. So there is not actually a Connection Pool that manages the

Re: Tomcat 4.x and Database Connection Pooling

2002-04-10 Thread rainer jünger
Hi Craig, Sorry somehow I don't understand your answer. Struts is ***NOT*** going to remove its own connection pool :-). Thanks thats an answer even I can understand ; ). However, the internal implementation is changing in Struts 1.1 to use the commons-dbcp implementation