Re: Problems with graphics on Tomcat 5.5.9

2005-10-10 Thread Viorel Dragomir
What exception ? [ If it's not confidential. :) ] Viorel Dragomir . .. --- - Original Message - From: Mauricio Fernandez A. To: Tomcat Users List Sent: Monday, October 10, 2005 14:42 Subject: RE: Problems

Re: Tomcat cant see my application folder HELP!!!

2005-09-21 Thread Viorel Dragomir
Tomcat is not exactly httpd. So, try to READ some FREE docs on the website. http://jakarta.apache.org/tomcat/tomcat-5.5-doc/appdev/index.html Viorel Dragomir . .. --- - Original Message - From: Mbah Tenjoh-Okwen

Re: use php in servlet engine.

2005-09-06 Thread Viorel Dragomir
Choose 1. But with some modifications apache + php + mod_jk - tomcat Viorel Dragomir . .. --- - Original Message - From: David Delbecq To: Tomcat Users List Sent: Tuesday, September 06, 2005 10:00 Subject: use php

Re: URLEncoder

2005-09-01 Thread Viorel Dragomir
Try to set a default character encoding for both app [yours and tomcat]. Viorel Dragomir . .. --- - Original Message - From: Roland Carlsson To: tomcat-user@jakarta.apache.org Sent: Thursday, September 01, 2005 16

Re: Apache and Tomcat on separate hosts?

2005-08-17 Thread Viorel Dragomir
You can have the servers on different machines. Look more on mod_jk2 configuration. As I know, mod_jk2 project is no longer maintained so it's better to switch to mod_jk. Viorel Dragomir . .. --- - Original Message

Re: Tomcat 5.5.9 connection pooling

2005-07-18 Thread Viorel Dragomir
Can you attach the exception thrown ? Viorel Dragomir . .. --- - Original Message - From: [EMAIL PROTECTED] To: tomcat-user@jakarta.apache.org Sent: Monday, July 18, 2005 13:38 Subject: Tomcat 5.5.9 connection

Re: How to Schedule a startup of Tomcat in Windows2000

2005-06-14 Thread Viorel Dragomir
net stop tomcat net start tomcat Viorel Dragomir . .. --- - Original Message - From: John Sorensen To: tomcat-user@jakarta.apache.org Sent: Tuesday, June 14, 2005 15:40 Subject: How to Schedule a startup of Tomcat

Re: Apache Integration

2005-05-30 Thread Viorel Dragomir
Define two workers tc4 and tc5 On httpd.conf JkMount /tc4prj/*.jsp tc4JkMount /tc5prj/*.jsp tc5http://jakarta.apache.org/tomcat/tomcat-3.3-doc/mod_jk-howto.html Viorel Dragomir . .. --- - Original Message - From

Re: Nervous about Sessions ...

2005-04-27 Thread Viorel Dragomir
Yes. But you can set some attributes of the objects as [ transient ] to not be serialized. So you don't have to make all objects in the package serializable. Viorel Dragomir . .. --- - Original Message - From: David

Re: java.lang.UnsupportedClassVersionError ?

2005-04-15 Thread Viorel Dragomir
Your jsp files are compiled using jdk1.5. Remove these files from tomcat's working directory. [ (..)tomcat/work ] Viorel Dragomir . .. --- - Original Message - From: Pawson, David To: Tomcat Users List Sent: Friday

Re: port number

2005-04-13 Thread Viorel Dragomir
Look for mod_jk how to. It's a connector that can send .jsp or servlets requests from apache to tomcat. Viorel Dragomir . .. --- - Original Message - From: t.n.a. To: Tomcat Users List Sent: Wednesday, April 13

Re: I want to install Apache+Tomcat

2005-04-06 Thread Viorel Dragomir
After you install you must run [execute] the Tomcat using startup.(sh|bat) from bin directory. I guess for windows there is an application to install/run the service. Viorel Dragomir . .. --- - Original Message

Re: Clustering question

2005-04-01 Thread Viorel Dragomir
Not all the objects inside your class must be serializable. Set all the objects you don't want to persist as transient. [ For instance, I don't want to persist a data connection [in this way] or a logger ] Viorel Dragomir

Re: remove stack-trace from public web

2005-03-31 Thread Viorel Dragomir
/location /error-page Viorel Dragomir . .. --- - Original Message - From: Andreas Andersson To: Tomcat Users List Sent: Thursday, March 31, 2005 13:22 Subject: remove stack-trace from public web Hi! Is there anyway

Re: Tomcat Hang on Linux (hangs the entire system)

2005-03-30 Thread Viorel Dragomir
It might be a hardware related problem. Try to change the memory. Viorel Dragomir . .. --- - Original Message - From: Steve Vanspall To: tomcat-user@jakarta.apache.org Sent: Thursday, March 31, 2005 09:38 Subject

Re: starting the JVM with -D option in tomcat

2005-03-21 Thread Viorel Dragomir
JAVA_OPTS=-D= -Dfile.encoding=ISO-8859-1 export JAVA_OPTS [start tomcat] Viorel Dragomir . .. --- - Original Message - From: swetha Ranganathan To: tomcat-user@jakarta.apache.org Sent: Monday, March 21, 2005

Re: running a thread in Tomcat

2005-03-15 Thread Viorel Dragomir
Set the thread to act like a daemon. It's a Thread [class] thing. There are ten better ways to resolve the same problem without threads. Viorel Dragomir . .. --- - Original Message - From: Mark To: tomcat-user

Re: running a thread in Tomcat

2005-03-15 Thread Viorel Dragomir
I apologize for the previous post. The Read Receipt was enabled [because of my boss's will] and I forgot about it. Thank you for your understanding, Viorel Dragomir . .. --- - Original Message - From: Mark

Re: OutOfMemory

2005-03-01 Thread Viorel Dragomir
CATALINA_OPT=-Xmx256M -Xms256M Viorel Dragomir . .. --- - Original Message - From: Edouard Dalla-Costa To: Tomcat Users List Sent: Tuesday, March 01, 2005 11:11 Subject: OutOfMemory Hello, I have some OUtOfMemory

Re: Need access to classes outside Tomcat for JSPs

2005-03-01 Thread Viorel Dragomir
You can redirect the tomcat's work directory to your classes. That should work for you ! Viorel Dragomir . .. --- - Original Message - From: Allistair Crossley To: Tomcat Users List Sent: Tuesday, March 01, 2005 15

Re: trying with my first site on Tomcat with IIS

2005-02-23 Thread Viorel Dragomir
Try with google. You can find an how to on jakarta.apache.org site. Or you can ask your friends. Viorel Dragomir . .. --- - Original Message - From: David IBARRA ROSALES To: Tomcat Users List Sent: Wednesday

Re: how to print to web page instead of catalina.out

2005-02-23 Thread Viorel Dragomir
If you can't find a response [HttpServletResponse] object to use than you can't print. Use throw Exception(MESSAGE) ;) Viorel Dragomir . .. --- - Original Message - From: Jin Wu To: Tomcat Users List ; Antony Paul

Re: reading xml file from disk with jsp bean under tomcat

2005-02-18 Thread Viorel Dragomir
1.Code 404 appears when you can't find your jsp file. Do you correctly deployed it into an webapplication ? 2.You can get the file using the absolute URL to the file like [c:/myfile.xml] but you might want first to upload the file to the webserver and then parseit. Viorel Dragomir

Re: Two versions of Tomcat running on the same pc at the same time

2005-01-27 Thread Viorel Dragomir
See the server.xml and search for 8080 / 8005 / 8009 You can't execute two servers for the same port[s] so you must change this value for the second installation. Viorel Dragomir . .. --- - Original Message - From

Re: [DBCP] Management of transactions...

2005-01-25 Thread Viorel Dragomir
This is the worst english I've seen so far. It's almost worse than mine. Viorel Dragomir . .. --- - Original Message - From: ksv To: tomcat-user@jakarta.apache.org Sent: Tuesday, January 25, 2005 17:52 Subject: [DBCP

Re: Re: Re: ConnectionPooling

2005-01-20 Thread Viorel Dragomir
http://logging.apache.org/log4j/docs/manual.html You really need to read something like this. Logging is an important step into building an app, so you have to sacrifice now some time for learning how to do it. Viorel Dragomir

Re: Consolidate webapplications

2005-01-19 Thread Viorel Dragomir
://jakarta.apache.org/tomcat/connectors-doc/index.html Viorel Dragomir . .. --- - Original Message - From: Roland Carlsson To: TomcatUsers Sent: Wednesday, January 19, 2005 10:04 Subject: Consolidate webapplications Hi! We have a lot

Re: ConnectionPooling

2005-01-19 Thread Viorel Dragomir
http://jakarta.apache.org/tomcat/tomcat-5.0-doc/jndi-datasource-examples-howto.html You must set a web reference into web.xml too. And is better that your resource params from server.xml regarding the database conection to be written into META-INF/context.xml Viorel Dragomir

Re: Failin to start tomcat 5.0

2005-01-17 Thread Viorel Dragomir
You may have an already started instance of tomcat on port 8084 So you must check if the port is already open. Maybe somebody else already executed tomcat :) check with netstat -l or telnet localhost 8084 Viorel Dragomir

Re: apache + tomcat with 2 domains but same session?

2005-01-11 Thread Viorel Dragomir
of this cookie. I guess there is a way to automatically save the session into database with tomcat, but I don't know anything about this, and retrieve it from two subdomains. If there is the second solution, I'm interested in more details. Viorel Dragomir

Re: Tomcat 5.5 Webapp logging.

2004-12-09 Thread Viorel Dragomir
Maybe the problem is not what the log4j.properties contains but if it is found by the package. Try to put this file in System.getProperties().get(user.dir) [ the package itself is located in WEB-INF/lib ] Viorel Dragomir

Re: JDK Logging...

2004-11-16 Thread Viorel Dragomir
Log4j does the job. http://logging.apache.org/log4j/docs/ Viorel Dragomir . .. --- - Original Message - From: Shilpa Nalgonda To: Tomcat Users List Sent: Tuesday, November 16, 2004 17:48 Subject: JDK Logging

Tomcat Listener [?]

2004-10-27 Thread Viorel Dragomir
. If you know that this specs can be done in an application server say so, and I'll search other realms. Viorel Dragomir . .. ---

Re: Tomcat Listener [?]

2004-10-27 Thread Viorel Dragomir
to that servlet and will be a lot of requests. The servlet is like erasing files from a folder [is not doing that, but is the same idea] for a request. I don't want to try to erase the same folder 1000 times.. Viorel Dragomir

Re: JNDI DataSource GlobalResources problem

2004-10-26 Thread Viorel Dragomir
); conn = ds.getConnection(); I actually think is not so hard to implement it. Hope you can use some of this.. As you can see it was for postgresql and localhost, but you can change as you need. Viorel Dragomir - Original Message - From: Roland Carlsson

Re: jdbc pool

2004-10-22 Thread Viorel Dragomir
Follow http://jakarta.apache.org/tomcat/tomcat-4.1-doc/jndi-datasource-examples-howto.html#Database%20Connection%20Pool%20(DBCP)%20Configurations closely. Viorel Dragomir . .. --- vioss was here - Original Message

Re: accessing a database ...

2004-08-10 Thread Viorel Dragomir
Hi, I have no ideea if this is really possible, but I want to clarify for myself. If tomcat runs as a service, do you think that it might have permissions problem with reading the DSN entry? -- viorel - Original Message - From: Vassilis Atlamazoglou To:

Re: Binary distribution for Linux?

2004-08-02 Thread Viorel Dragomir
Please see the download page from tomcat. Tomcat is written in java, so the windows distribution works in linux too. There are different shell scripts to run for each platform. google.com is free for commercial or individual use check it out - Original Message - From: Jérôme Duval

Re: Stopping takes ages

2004-07-29 Thread Viorel Dragomir
Hi Christina, Regarding the Warp connector, if you don't need that servlets can be served from an apache webserver you can disable it from server.xml Anyway you have to change that connector to jk2 (or at least jk).. Some infos are here

Re: can a virtual host have its own privatly used SSL certificate?

2004-07-15 Thread Viorel Dragomir
Hi, As I know, in order to use ssl on the tomcat, or apache you must make additional configurations regarding the webserver. Add modules and changing webserver configuration files. If you don't have the right to make this changes you can't have ssl. If you find a example more usefull.. If you

JNDI / pooling

2004-07-09 Thread Viorel Dragomir
Hi, I can't describe exactly the problem because I'm not familiar with all the terms... But the big picture is that I want to create a pool of ftp connections to work like a database connection and I want to get the connection from JNDI. So far I extended BaseKeyedPoolableObjectFactory and