Re: Serializable Logging implementation

2004-09-15 Thread Antony Paul
My understanding is that this event will be called when the container passivates for transfering one object from one VM to Another like a cluster. Will this be invlked on Tomcat 4.1 when an object is serialised ?. rgds Antony Paul - Original Message - From: "Tim Funk" <[EM

Re: Serializable Logging implementation

2004-09-15 Thread Antony Paul
The NPE is because the Log instance is transient. I can fix this by getting a new instance when it is read from disk. I dont remember the method which is called when an object is serialized. rgds Antony Paul - Original Message - From: "Shapira, Yoav" <[EMAIL PROTECTED]> T

Re: Serializable Logging implementation

2004-09-15 Thread Antony Paul
Then it throws NullPointerException rgds Antony Paul - Original Message - From: "Shapira, Yoav" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Wednesday, September 15, 2004 6:05 PM Subject: RE: Serializable Logging implementation

Re: Serializable Logging implementation

2004-09-15 Thread Antony Paul
I extend a base form which gets the Log as LogFactory.getLog(this.getClass()); So that no need to define and get a Log instance in subclass. Is there any way so that I can follow this pattern. rgds Antony Paul - Original Message - From: "Tim Funk" <[EMAIL PROTECTED]> T

Serializable Logging implementation

2004-09-15 Thread Antony Paul
Hi, I used Log4J and commons logging in an ActionForm which is stored in the session. When I reload the context it is invalidating the session because it is non serializable. Is there any work around for this ?. Or do I have to use any other Logger. rgds Antony Paul

SocketException: Software caused connection abort: recv failed

2004-09-09 Thread Antony Paul
Hi , I am getting this error when SSL is enabled. Sep 10, 2004 11:14:30 AM org.apache.tomcat.util.net.TcpWorkerThread runIt SEVERE: Remote Host /192.168.4.66 SocketException: Software caused connection abort: recv failed This is on console. What may be the cause for it ?. Tomcat 4.1.30 Java

Re: Pls Help index.jsp not compiling dynamically

2004-09-09 Thread Antony Paul
Which version ?. Are you using the default Tomcat installation . If yes there should not be any problem if you didnt changed any configuration files. rgds Antony Paul - Original Message - From: "Arun Prasad R" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMA

Re: how do i set max session time in 4.1.27

2004-09-09 Thread Antony Paul
If you are setting maximum session time out you can set it in the WEB-INF/web.xml like this 30 The time out is in minutes. This is to be placed after servlet-mapping element. or use session.setMaxInactiveInterval(); rgds Antony Paul - Original Message - From: "Arun Pra

DBCP - monitoring connections

2004-09-08 Thread Antony Paul
these information. rgds Antony Paul - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: jndi-datasource

2004-09-01 Thread Antony Paul
Do you have the jtds jar in Tomcat classpath. I think it should in same directory as dbcp.jar which is in CATALINA_HOME\common\lib folder. Antony Paul - Original Message - From: "Steve Cheng" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]&g

Re: Tomcat 5 & Crystal Reports

2004-08-31 Thread Antony Paul
Is it possible to install Crystal Reports in Tomcat as a web application ?. Which version of Crystal Reports supports this ?. Antony Paul - Original Message - From: "POLO ARAUJO, JAVIER" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, August 31, 2004 12

Re: Best practice for generating URL's

2004-08-25 Thread Antony Paul
in this kind of work. rgds Antony Paul - Original Message - From: "Antony Paul" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, August 24, 2004 2:19 PM Subject: Best practice for generating URL's > Hi all, > What is the best practice f

Best practice for generating URL's

2004-08-24 Thread Antony Paul
L. It is using Struts and how to manage links in struts-config.xml. There will be lot of people who worked on this kind of scenario and I expect them to help me. rgds Antony Paul - To unsubscribe, e-mail: [EMAIL PROTECTED

[OT]CVS Tag in source code

2004-08-19 Thread Antony Paul
this version is included it is easy to identify which version we are using. rgds Antony Paul - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Reloading servlets instantly.

2004-04-23 Thread Antony Paul
Jakarta JSP compiler. Or any other JSP engines support this ?. Antony Paul. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

What is accepted way to read/write files in Tomcat ?

2004-04-15 Thread Antony Paul
ption. Is it legitimate to use the getRealPath() to get the context root and write the file ? Antony Paul - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Problems running pre-compiled JSP classes when in subdirectories

2004-01-08 Thread Antony Paul
I want to detect any compilation errors and make it faster for the QA fellow to access the application. Antony Paul - Original Message - From: "Riaan Oberholzer" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Thursday, January 08, 20

Re: No Java compiler was found ....

2004-01-07 Thread Antony Paul
Correcting the error makes things ok. Now the error is not coming as I removed jdk1.3.1 and built TC using jdk 1.4.1. Antony Paul - Original Message - From: "Shapira, Yoav" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Wednesday,

Re: Problems running pre-compiled JSP classes when in subdirectories

2004-01-07 Thread Antony Paul
I think the problem is the compiled source file is not in the org.apache.jsp package. How to set this in jspc task. Antony Paul - Original Message - From: "Antony Paul" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Wednesday, Janu

Re: Problems running pre-compiled JSP classes when in subdirectories

2004-01-07 Thread Antony Paul
this error. Antony Paul - Original Message - From: "Edson Alves Pereira" <[EMAIL PROTECTED]> To: "'Tomcat Users List'" <[EMAIL PROTECTED]> Sent: Wednesday, January 07, 2004 8:12 PM Subject: RE: Problems running pre-compiled JSP classes when in subdi

Re: Problems running pre-compiled JSP classes when in subdirectories

2004-01-07 Thread Antony Paul
The generated servlets are not put in a package. When Tomcat is compiling JSP it is put in org.apache.jsp. How to set this in the jspc task. The files are generated as usual in the work directory in the same structure as Tomcat itself compiles JSP files. Antony Paul - Original Message

Re: Problems running pre-compiled JSP classes when in subdirectories

2004-01-07 Thread Antony Paul
I have same problem but it is not thoroughly investigated. Any help will be appreciated Antony Paul - Original Message - From: "Jay Glanville" <[EMAIL PROTECTED]> To: "'Tomcat Users List'" <[EMAIL PROTECTED]> Sent: Wednesday, January 07,

No Java compiler was found ....

2004-01-07 Thread Antony Paul
common\lib and error persists. Antony Paul - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: adding timestamp to logs

2004-01-04 Thread Antony Paul
In this message there is no timestamp. It is from stderr.log. [ERROR] ThreadPool - -All threads are busy, waiting. Please increase maxThreads or check the servlet status5 5 Antony Paul - Original Message - From: "Rhino" <[EMAIL PROTECTED]> To: "Tomcat Users List"

adding timestamp to logs

2004-01-02 Thread Antony Paul
Hi, I want to add a time stamp to Tomcat loggings. I am using JDK 1.3 and no log4j. I want to add this to stderr. rgds Antony Paul - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

what if response.sendRedirect(null)

2004-01-02 Thread Antony Paul
Hi, What will happend if response.sendRedirect(null) is called. It is giving a directory listing. No error is thrown. Is this as per the spec ? I am using Tomcat 4.1.27 with JDK 1.3.1 rgds Antony Paul - To unsubscribe, e

Re: Building 5.1 from Source

2003-12-30 Thread Antony Paul
Ya you are right. CVS isnt able to download source. Other downloads are Ok. ie. proxy settings are Ok. Antony Paul - Original Message - From: "Ramakrishna Rallapalli" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Tuesday, Decemb

Re: Building 5.1 from Source

2003-12-29 Thread Antony Paul
When I run ant it is running cvs and it fails and continue processing other tasks. I dont have CVS in path. Antony Apul. - Original Message - From: "Ramakrishna Rallapalli" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Tuesday, December 30, 2003 11:56 AM Subject: R

Re: [OT] custom tags in a page

2003-12-29 Thread Antony Paul
is using same code other than the retrieved tag instance is assigned to a new variable and methods are invoked on this. Is there any particular reason for doing this ?. My reason for asking this question is to know and learn how pooling works. rgds Antony Paul - Original Message - Fr

[OT] custom tags in a page

2003-12-29 Thread Antony Paul
an object. Each time it is getting an instance from a pool ? BTW Extending TagSupport or BodyTagSupport is better. I have no need to process the body ? Any performance gain ? rgds Antony Paul - To unsubscribe, e-mail: [EMAIL

What after reloading a context

2003-12-29 Thread Antony Paul
Hi all, What happens to all loaded servlets on reloading a context ?. All servlets are destroyed first then these are initialised after reload before any request is arrived ?. rgds Antony Paul - To unsubscribe, e-mail

Re: java.lang.OutOfMemoryError

2003-12-26 Thread Antony Paul
Please specify the OS version. A similar thread is there . Antony Paul - Original Message - From: "Lam Chee Choong" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Friday, December 26, 2003 8:11 PM Subject: RE: java.lang.OutOfMemo

Re: Can't run servlets

2003-12-26 Thread Antony Paul
have security bugs and is disabled by default. Antony Paul. - Original Message - From: "X V Jay" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, December 26, 2003 1:43 PM Subject: Can't run servlets > Hi, > I have been unable to run servelets

Re: jsp compilation error

2003-12-24 Thread Antony Paul
Where is the java bean class file residing. It must be in WEB-INF\classes or WEB-INF\lib(as jar file). Antony Paul - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, December 24, 2003 2:31 PM Subject: jsp compilation error > Hi all,

Re: tomcat4.1.24 not compiling jsp page

2003-12-24 Thread Antony Paul
Possibly some class file is corrupted or it may be due to a version mismatch between JDK and JVM or an older version of class files in class path. What versions of JDK and and JVM is in your machine ?. Antony Paul - Original Message - From: "N.B.Bopanna" <[EMAIL PROTECTED]

Re: Off Topic- Core java

2003-12-23 Thread Antony Paul
add . (current directory) to classpath. There is no need to specify where the java API libraries to 1.4 Sun javac compilers. Antony Paul. - Original Message - From: "N.B.Bopanna" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, December 24, 2003 11:32

Deploying app in Tomcat 5

2003-12-23 Thread Antony Paul
Hi, I just installed(built) Tomcat 5.0.16. I copied an xml file containing deployment description of a context to webapps directory. Restarted Tomcat. It gives 404 error. The same procedure works with Tomcat 4.1.27. What is wrong ? rgds Antony Paul

tomcat 5 source compiling error

2003-12-22 Thread Antony Paul
javax.xml.transform.TransformerFactory cannot be found This one I cannot find a solution. Googling said that ant 1.5 doesnt have XSLT transformer and says to download and use xalan. Then what is xerces-2.5.0. If using xalan where to put it. There is no setting for xalan in build.properties. rgds Antony Paul

Re: Stupid servlet question...

2003-12-19 Thread Antony Paul
What is an application scope servlet ?. You can ask the container to initialize a servlet at container start up by setting the parameter to 1 in web.xml. like this. action org.apache.struts.action.ActionServlet 1 Antony Paul - Original Message - From: "Mikael Aronsson&quo

Re: [Tomcat Admin user name & password]

2003-12-18 Thread Antony Paul
check for any file named admin-users.xml. I think Tomcat 5 uses this file. I am not sure. Antony Paul. - Original Message - From: "saravanan" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Thursday, December 18, 2003 9:57 PM Subj

Re: jsp.error.attribute.unterminated -- WTF?

2003-12-18 Thread Antony Paul
It seems like a custom tag error message. Do u use any custom tags. Antony Paul - Original Message - From: "Josh G" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, December 18, 2003 12:01 PM Subject: jsp.error.attribute.unterminated -- WTF? > >

Re: RequestDispatcher in servlet is not working

2003-12-17 Thread Antony Paul
out if not forwading. Another way is increasing the buffer size of out. Antony Paul. - Original Message - From: "Teja Jo" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Thursday, December 18, 2003 9:57 AM Subject: Re: RequestDisp

Re: RequestDispatcher in servlet is not working

2003-12-17 Thread Antony Paul
You can call forward() before the response is committed. I seems that it is throwing IllegalStateException. Antony Paul - Original Message - From: "Teja Jo" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, December 18, 2003 9:27 AM Subject: RequestDispat

Re: /server/lib available to web applications?

2003-12-15 Thread Antony Paul
Why this directory have jars of file upload,beanutils. Antony Paul - Original Message - From: "Shapira, Yoav" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Monday, December 15, 2003 6:53 PM Subject: RE: /server/lib available t

Re: Need some Tomcat Configuration help badly

2003-12-14 Thread Antony Paul
JSP. I faced this problem when workstation machine time is behind server time. You can overcome this by syncing all machines clocks. Or advise students to perform a reload through the manager task. Or write an Ant script to reload it. rgds Antony Paul. - Original Message - From: "

Re: Testing servlet for thread safety.

2003-12-09 Thread Antony Paul
want to know any special component is available in these testing frameworks. I want open source. rgds Antony Paul . - Original Message - From: "Adam Hardy" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Tuesday, December 09, 2003 3:47

Testing servlet for thread safety.

2003-12-08 Thread Antony Paul
Hi, I asked this question as part of another mail but Mr. Tim Funk left it unanswered. How to test a servlet for thread safety. rgds Antony Paul. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

Copying files from Tomcat 4.1.x to Tomcat 5.x

2003-12-08 Thread Antony Paul
Hi all, Is there any compatibility issues in putting the jsp/servlet files developed in Tomcat 4.1.x series to Tomcat 5.x. Application uses only Servlets 2.3 and JSP 1.2. rgds Antony Paul. - To unsubscribe, e-mail: [EMAIL

[OT] Quality of open source code - not a survey.

2003-12-08 Thread Antony Paul
things work and how to implement it. To learn it, the cheap way available to me is looking at code written by some experts. I believe people who wrote Tomcat,JSTL and other have godd knowledge of Java. Is there anything wrong in doing such things ? rgds Antony Paul

[OT] Some questions on Java,Servlet, JSP and Tomcat.

2003-12-08 Thread Antony Paul
exceeds a limit without tweaking Tomcat code. rgds Antony Paul. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

[OT] Writing methods in servlets

2003-12-07 Thread Antony Paul
dont allow to move this to another class). I know that container creates multiple threads of servlce method of (I dont know how) same servlet to service multiple requests. Then what about other custom methods in servlets. I dont use any instance variables. rgds Antony Paul

Re: trouble with servelts

2003-12-04 Thread Antony Paul
Hello Girish, You have to set the CLASSPATH environment varaible to include the tomcat install directory\common\lib\servlet.jar in order to compile servlets. Have you run the example application available at http://localhost/examples/servlets/index.html. rgds Antony Paul - Original

JK2 DLL not loaded.

2003-11-28 Thread Antony Paul
IIS. But no servlets are working. It is giving a 404 error. The uriworkermap content is given below. How to make servlets work ?. default.worker=ajp13 /app/=$(default.worker) /app/*.jsp=$(default.worker) /app/servlet/*=$(default.worker) Antony Paul

Re: Preload JSP when it's startup

2003-11-28 Thread Antony Paul
. Rgds Antony Paul. - Original Message - From: <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTE

Re: Tomcat 4 - IIS 5 on Win 2K: Unable to connect IIS to tomcat on AJP13 connector

2003-11-27 Thread Antony Paul
directory. Putting it at other places wont work. After this I configured as per the docs in http://localhost/tomcat-docs/jk2/jk/iishowto.html. Again here you have to put the DLL in win32\i386 directory. Antony Paul - Original Message - From: "Bhavdeep Sharma" <[EMAIL PROTECTED]

JK2 in server.xml with 4.1.29

2003-11-26 Thread Antony Paul
Hi, I am trying configure Tomcat 4.1.27 + IIS on win2k. In server.xml there are two entries namely and which one is to uncommented. rgds Antony Paul. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e

Re: Any jsp examples that pull from a local db?

2003-11-26 Thread Antony Paul
Check this link. It have downloadable code. For more code do Googling. http://www.onjava.com/pub/a/onjava/2003/01/08/tomcat4.html Antony Paul - Original Message - From: "SL" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, November 26, 2003 11:12 AM Sub

Re: HTTP Status 404.

2003-11-25 Thread Antony Paul
If you created a new context try restarting Tomcat and look at the work directory of Tomcat usually at D:\ApacheTomcat4\work\Standalone\localhost\ to see whether the directory pg_mdp is created. If not you have to add a context in conf\server.xml. Antony Paul - Original Message - From

Re: Severity less - DBCP not closing connection.

2003-11-23 Thread Antony Paul
to the calling servlet.. If the servlet to which it is forwareded takes lot of time to complete then what will happen ?. This is not mentioned in any articles or books that I have read. Antony Paul. - Original Message - From: "Christopher Schultz" <[EMAIL PROTECTED]> To: &q

Re: Severity less - DBCP not closing connection.

2003-11-21 Thread Antony Paul
I tested it using a sample code which is posted. All resultsets,prepared statements and connections are closed in finally block. I dont have a real problem yet. The app is still in developing stage. Antony Paul - Original Message - From: "Edson Alves Pereira" <[EMAIL P

Re: [OT] Synchronising database access

2003-11-21 Thread Antony Paul
thanks for the reply synchrosing servlet code dont work ? Antony Paul - Original Message - From: "Peter Guyatt" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Friday, November 21, 2003 5:28 PM Subject: RE: [OT] Synchronising databas

[OT] Synchronising database access

2003-11-21 Thread Antony Paul
thread completes the entire process other threads can execute the code. How to do it. Do I have to synchronise on Connection or on this or implement SingleThreadModel. I also want to know how much extra time a synchronised block requires than an unsynchronised block. Antony Paul

Severity less - DBCP not closing connection.

2003-11-21 Thread Antony Paul
close(); } System.out.println("In Two end - "+(System.currentTimeMillis()-time)); } %> I work with one connection to test for connection leak and any bottlenecks in code. It works fine if I put the forward() after the end of finally block. I want to know whether it is bug or config error or Tomcat behaves so. Antony Paul. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Dead threads

2003-11-20 Thread Antony Paul
rray); for(int i=0;i"); hope this helps. Antony Paul. - Original Message - From: "Laurent Michenaud" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Thursday, November 20, 2003 9:16 PM Subject: RE : Dead threads I can't find it.

Re: Where to find Tomcat RPMs?

2003-11-20 Thread Antony Paul
Check this http://marc.theaimsgroup.com/?l=tomcat-user&m=106639528807348&w=2 Antony Paul - Original Message - From: "Jens Ove Lillegraven" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Thursday, November 20, 2003 1:03 PM Sub

Re: Query..

2003-11-18 Thread Antony Paul
http://mirrors.midco.net/pub/apache.org/jakarta/tomcat-connectors/ Antony Paul - Original Message - From: "Krishna Kumar" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, November 18, 2003 10:53 AM Subject: Query.. > Hi, > Can u please

Re: please explain behavior of Requestdispatcher.forward()

2003-11-15 Thread Antony Paul
Actually I have to remove a textbox element from a form. Antony Paul - Original Message - From: "Antony Paul" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Saturday, November 15, 2003 5:33 PM Subject: please explain behavior of Re

please explain behavior of Requestdispatcher.forward()

2003-11-15 Thread Antony Paul
string from a request before forwarding it. Antony Paul - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

[OT] Getting form values - clarification required.

2003-11-07 Thread Antony Paul
.1.27 with JDK 1.3.1. Antony Paul. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: web.xml parser error

2003-11-05 Thread Antony Paul
It is solved. I did as per your suggestion. Thank for your reply. I would like to know what are the requirements to become a JSP/Servlet programmer/administrator. Antony Paul - Original Message - From: "Tim Funk" <[EMAIL PROTECTED]> To: "Tomcat Users List"

Re: web.xml parser error

2003-11-05 Thread Antony Paul
dServlet sa.OperationPasswordServlet sa/OperationPasswordServlet /sa/OperationPasswordServlet DB Connection Pool jdbc/Database javax.sql.DataSource Container Antony Paul - Original Message - From: "Tim Funk" <[EMAIL PROTECTED]> To: "Tomcat

Re: web.xml parser error

2003-11-05 Thread Antony Paul
mean ? Antony Paul - Original Message - From: "Christopher Schultz" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Wednesday, November 05, 2003 7:42 PM Subject: Re: web.xml parser error > Antony, > > > am getting this error.

web.xml parser error

2003-11-05 Thread Antony Paul
am getting this error. Is it possible to know which web.xml caused the error ? [ERROR] Digester - -Parse Error at line 70 column 11: The content of element type "web-app" must match Antony Paul - To unsubscri

Re: Tomcat clustering and servletContext.

2003-11-04 Thread Antony Paul
I found your reply in the archives. Antony Paul - Original Message - From: "Shapira, Yoav" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Tuesday, November 04, 2003 7:09 PM Subject: RE: Tomcat clustering and servletContext.

Re: Tomcat clustering and servletContext.

2003-11-04 Thread Antony Paul
es in the Servlet Context are > not replicated. > > -Tim > > Antony Paul wrote: > > Hi, > > I asked this question yesterday no one replied. > > Suppose Tomcat is running in a cluster with load balancer. If I put a > > JavaBea

Tomcat clustering and servletContext.

2003-11-03 Thread Antony Paul
Hi, I asked this question yesterday no one replied. Suppose Tomcat is running in a cluster with load balancer. If I put a JavaBean in ServletContext is it possible to access this bean in all machines ?. Antony Paul - To

Re: Design advice needed.

2003-11-03 Thread Antony Paul
But this requires adding a column to every table. I found two ways of doing this. 1. Using time stamp. It requires adding a column to table. 2. Checking data for equality before updating. It requires querying database again. Any alternative way. thanks for the replies Antony Paul

Re: Design advice needed.

2003-11-03 Thread Antony Paul
ould since TC starts up one instance and > multi-thread it, but we have programmatically forced it to be singled > threaded. > Like to hear back n this one. > > Johan Kok wrote: > > > > Wish I could, it's been eight years since I was did any DBA/DB development > >

Re: Design advice needed.

2003-11-03 Thread Antony Paul
in any case, before commiting, otherwise it may update > changed data, e.g. updates that are made through other processes or even > triggers. > > If my memory serves me right, that is something you can do easily with > Oracle (i.e. there's a standard feature implemented), even with Or

Design advice needed.

2003-11-02 Thread Antony Paul
Oracle 8i. The application is using MVC pattern but do not use Struts. Antony Paul - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Servlet context in tomcat cluster.

2003-11-02 Thread Antony Paul
accessed by servlets and jsps. Antony Paul. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Problem with JNDI Datasource HOW-TO MySQL Example

2003-10-31 Thread Antony Paul
In any case, thanks much for the help! > > Dave > > - Original Message - > From: "Antony Paul" <[EMAIL PROTECTED]> > To: "Tomcat Users List" <[EMAIL PROTECTED]> > Sent: Friday, October 31, 2003 12:42 AM > Subject: Re: Problem

Re: Use of return statement in servlet.

2003-10-31 Thread Antony Paul
st in the case ;-) > > What I do is to create a simplest JSP: > > > Hello World > > > And compile it. Then, looking at the generated servlet code, I check > that no resource-freeing operations are done after writing "Hello Worl" > to the output stream. The mome

Re: Problem with JNDI Datasource HOW-TO MySQL Example

2003-10-31 Thread Antony Paul
simple suggestion. put the class file in webapps/DBTest/WEB-INF/classes/foo. Antony. Original Message - From: "David De Graff" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, October 31, 2003 1:55 PM Subject: Problem with JNDI Datasource HOW-TO MySQL Example > I'm new to Java

Re: Use of return statement in servlet.

2003-10-31 Thread Antony Paul
rect to an error page. I want to know is there any problems in using the return statement in servlets/jsp. Antony Paul - Original Message - From: "Nikola Milutinovic" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Friday, October 31

Use of return statement in servlet.

2003-10-30 Thread Antony Paul
if blocks. Antony Paul - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

using DBCP in other web containers.

2003-10-28 Thread Antony Paul
be deployed. Antony Paul - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Getting contenttype of HttpServletResponseWrapper.

2003-10-17 Thread Antony Paul
. Why the default wrapper is not working. Is it a programming error. rgds Antony Paul - Original Message - From: "Tim Funk" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Friday, October 17, 2003 4:42 PM Subject: Re: Getting contentty

Getting contenttype of HttpServletResponseWrapper.

2003-10-16 Thread Antony Paul
Hi all How to know the content type of an HttpServletResponseWrapper. A filter need to know the content type of the respnse after the doFilter. It need to process only the text/html responses. Antony Paul - To unsubscribe, e

Can any one tell where is a simple Tomcat + IIS how to using Coyote/JK2 AJP 1.3?

2003-10-14 Thread Antony Paul
version of it is availble at the site jakarta download site. Currently only Coyote JK2(isapi_redirector2.dll) is provided. So I tried with JK2 again no result and IIS shows it is not loading the DLL in the filter(There is a red down arrow). Antony Paul

Re: INVOKER fails after webapp recompile

2003-10-14 Thread Antony Paul
If you are using Tomcat 4.1.27 you have to install a patch available in Tomcat download directory. Antony Paul - Original Message - From: "Niklas Saers Mailinglistaccount" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, October 14, 2003 3:53 PM Subjec

Re: Tomcat performance issues with W2k - SP4

2003-10-06 Thread Antony Paul
My machine too have this problem. Any solutions. I am using JDK 1.4.1 , Tomcat 4.1.27 and Oracle 8i. - Original Message - From: "Benito Garcia" <[EMAIL PROTECTED]> To: ">" Sent: Monday, October 06, 2003 5:33 PM Subject: Tomcat performance issues with W2k - SP4 Hello. I have Tomcat 4

[OT] please tell a javascript/DHTML forum or mailing list

2003-09-20 Thread Antony Paul
Hi all, Can any one suggest a javascript or DHTML forums. i have problems in adding a row to table using DOM. Antony Paul - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

[OT] Quality standards and Tomcat .

2003-09-11 Thread Antony Paul
Hi all, I hope that there is some one who knows about quality standards like CMM and CMMI . What I want to know is that Tomcat can be used in a company which implements CMMI standards. I dont know much about quality assurance. Thanks in advance. regards Antony Paul

Re: What are the features of Tomcat ?

2003-09-09 Thread Antony Paul
he features of Tomcat ? Howdy, That's an interesting question. Sounds like an interviewer who was just grasping for questions ;) Did you ask him/her what the answer was? Yoav Shapira Millennium ChemInformatics >-Original Message- >From: Antony Paul [mailto:[EMAIL PROTECTED] >

What are the features of Tomcat ?

2003-09-09 Thread Antony Paul
or know about other available application servers. regards Antony Paul - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [OT] Some one executing windows commands in Tomcat 4.1.18.

2003-08-14 Thread Antony paul
rom xx.xx.xx.xx trying to use an IIS vulnerability. If it's realy intranet your admin should have a look at the offending pc if it is infected by a virus. (Not shure out of the head if this is nimda, code red or what else) This vulnerability is not affecting tomcat. > -----Original Message

Re: Including port no in req.getServerName() output.

2003-08-14 Thread Antony paul
80% of the pages are completed(about 150 pages) so changing these pages is a tedious job. Antony Paul - Original Message - From: "Bodycombe, Andrew" <[EMAIL PROTECTED]> To: "'Tomcat Users List'" <[EMAIL PROTECTED]> Sent: Tuesday, August 12, 2003

Re: Including port no in req.getServerName() output.

2003-08-14 Thread Antony paul
Any tool ? I am working on windows and dont know PERL or scripting language. regards Antony Paul - Original Message - From: "Hans Wichman" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]>; "Tomcat Users List" <[EMAIL PROTE

[OT] Some one executing windows commands in Tomcat 4.1.18.

2003-08-14 Thread Antony paul
3:09:47:43 5050] "GET /MSADC/root.exe?/c+dir HTTP/1.0" 404 710 What does this mean ? Is there any vulnerability in Tomcat or this combination ?. I have uncommented the invoker servlet in web.xml. Is it creating the problem ?.

<    1   2   3   >