Re: providing downloading functionality for a file which is on disk

2009-07-21 Thread Kham Mulman
you can. for instance, File file = new File(C:\\temp\\downloadfilename.csv); FileInputStream fileIn = new FileInputStream(file); ServletOutputStream out = response.getOutputStream(); byte[] outputByte = new byte[4096]; //copy binary contect to output stream while(fileIn.read(outputByte, 0,

Re: Context.xml not updating dataSource

2009-07-21 Thread Rainer Frey
On Monday 20 July 2009 17:08:15 Mike Frohme wrote: Edit the copy of the context.xml file and all will work as you expect. 1. In production, the operations folks don't have to unpack the app, edit the context file and re-pack the app to edit the configuration. 2. When a new

Re: RMI call fails when URL contain spaces

2009-07-21 Thread André Warnier
And anyway, paths containing spaces are evil and should be proscribed. - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-mail: users-h...@tomcat.apache.org

Re: Configuring worker MPM for Tomcat

2009-07-21 Thread André Warnier
Anand Kumar Prabhakar wrote: Could anyone please explain how to configure worker MPM for Tomcat, I'm using Tomcat 6.0.20 version. I think you are a bit confused. worker MPM is something related to Apache httpd, which is a different software than Apache Tomcat. Unless you are talking about

Re: Context.xml not updating dataSource

2009-07-21 Thread Mark Thomas
Rainer Frey wrote: On Monday 20 July 2009 17:08:15 Mike Frohme wrote: Edit the copy of the context.xml file and all will work as you expect. 1. In production, the operations folks don't have to unpack the app, edit the context file and re-pack the app to edit the configuration. 2. When a

Unable to run web services in Apachee Tomcat

2009-07-21 Thread 17101978
Hi, I'm currently is trying to develop the web services and been trying what is the best method to implement it. Currently, I'm using the Netbean IDE6.7. I download the full version of Netbean IDE with GlassFish web server and Tomcat web server application. I try to follow the steps in :

Re: Unable to run web services in Apachee Tomcat

2009-07-21 Thread André Warnier
Hi 17101978. ... But, I got a problem to setup the Axis2 for Tomcat. I cannot found the CATALINA_BASE folder in the Tomcat folder. That is why, when try to test the browser, I found an error: Unable to open the web service. I doubt that it is why, but it may help to read the following

Re: Configuring worker MPM for Tomcat

2009-07-21 Thread Anand Kumar Prabhakar
Thank you for the reply. I'm going to use the worket MPM for the first time. And the server for which i'm trying to achieve it is in Tomcat. So it will helpful if the steps to configure the worker MPM. If i'm using Tomcat is this not possible? Anand Kumar Prabhakar wrote: Could anyone

Re: Configuring worker MPM for Tomcat

2009-07-21 Thread Anand Kumar Prabhakar
I'm trying to configure worker MPM for the first time. So i need the steps to configure them. Can't we implement worker MPM in tomcat server? -- View this message in context: http://www.nabble.com/Configuring-worker-MPM-for-Tomcat-tp24582105p24584637.html Sent from the Tomcat - User mailing

Re: Configuring worker MPM for Tomcat

2009-07-21 Thread Mark Thomas
Anand Kumar Prabhakar wrote: I'm trying to configure worker MPM for the first time. So i need the steps to configure them. Can't we implement worker MPM in tomcat server? Go and read Andre's reply again. Then look at: http://httpd.apache.org/ and http:/tomcat.apache.org/ What you are

Re: providing downloading functionality for a file which is on disk

2009-07-21 Thread lanxiazhi
I don't have a linux at hand to prove this idea: if you're deploy your app in linux ,maybe you can use a soft link to that directory ,and put the link under your webapp's dir. hope that will help. thanks. lanxiazhi 2009/7/21 Kham Mulman kmul...@gmail.com you can. for instance, File file =

RE: net stop tomcat6 service hangs on Windows 2008 (64-bit)

2009-07-21 Thread Matt Sullivan
I don't have a shutdown.bat or .cmd anywhere in C:\Program Files\Apache Software Foundation. No indication in logs of an OOM situation. I'm going to write a small batch file that attempts to stop the service, sleeps, queries the service state with SC, and if required kills the process. Thanks

RE: net stop tomcat6 service hangs on Windows 2008 (64-bit)

2009-07-21 Thread Caldarale, Charles R
From: Matt Sullivan [mailto:mjdsulli...@hotmail.com] Subject: RE: net stop tomcat6 service hangs on Windows 2008 (64-bit) I don't have a shutdown.bat or .cmd anywhere in C:\Program Files\ Apache Software Foundation. For reasons never explained, the .bat scripts are not included in the .exe

RE: providing downloading functionality for a file which is on disk

2009-07-21 Thread Caldarale, Charles R
From: Ritesh399 [mailto:ritesh...@gmail.com] Subject: providing downloading functionality for a file which is on disk I am developing a web application using jsp and want to provide some links for a user to download data. The data is not in web application's directory(somewhere else on

RE: Seeking the right solution to java.lang.ClassNotFoundException: com.mysql.jdbc.Driver

2009-07-21 Thread Martin Gainty
very thorough analysis hopefully quick question on location of mysql libraries Tomcat managed database connections: Requires the MySQL connectors to be in $CATALINA_HOME/lib Hibernate managed database connections: Based on the above, you'll need to place the MySQL connection jar in your

Re: Seeking the right solution to java.lang.ClassNotFoundException: com.mysql.jdbc.Driver

2009-07-21 Thread David Smith
Take a look at http://tomcat.apache.org/tomcat-6.0-doc/class-loader-howto.html. Then consider that tomcat's database pooling is instantiated in tomcat's internal classes which do not have access to any webapp's WEB-INF/lib folder. The driver has to be visible to both tomcat's internal classes

RE: Seeking the right solution to java.lang.ClassNotFoundException:com.mysql.jdbc.Driver

2009-07-21 Thread Caldarale, Charles R
From: Martin Gainty [mailto:mgai...@hotmail.com] Subject: RE: Seeking the right solution to java.lang.ClassNotFoundException:com.mysql.jdbc.Driver any reason why Tomcat managed DB connection would not read mysql jars located in WEB-INF/lib? The Tomcat-provided DBCP classes can't see

Issues running 2 versions of tomcat?

2009-07-21 Thread Security Management
I have a server, running Tomcat 5 with Java 4, and running Tomcat 6 with Java 6. There is another application that is an XMLRPC server on ports 8085-8100 The XMLRPC service is running on Tomcat 5, and a struts 2 application is running on Tomcat 6. I have verified that there are no common ports

RE: Seeking the right solution to java.lang.ClassNotFoundException: com.mysql.jdbc.Driver

2009-07-21 Thread Martin Gainty
this is good information many thanks for the link Martin Gainty __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese Nachricht ist vertraulich. Sollten Sie nicht der vorgesehene Empfaenger sein, so bitten wir

Wrong SessionID

2009-07-21 Thread Poehner, Uwe
Hello, our tomcat servers seem to produce very sporadically a wrong JsessionID - instead of 58EB1F9C39278DBB72528A13EF026EFB.bsp01 we get (J2EE13679500)ID0574993050DB11991779031281660559End (without a dot-jvmroute) so we lose stickyness and our session. Our environment (Hardware Loadbalancer -

Re: providing downloading functionality for a file which is on disk

2009-07-21 Thread Michael Ludwig
Caldarale, Charles R schrieb: If you don't mind providing direct access to the downloadable area, one easy way to provide this is to place a Context element in conf/Catalina/[host]/[dlink].xml, where [dlink] is the URL link you want for the downloadable files. Within the Context element, place

RE: Context.xml not updating dataSource

2009-07-21 Thread Mike Frohme
Sorry, Rainer - I didn't read your msg carefully, and Mark's word is right on. Others will clarify, but as I understand it ... The default Host attribute is deployXML true which means that the context.xml is deployed to conf/[engine]/[host]/appname.xml on application deployment, and

Re: Issues running 2 versions of tomcat?

2009-07-21 Thread Konstantin Kolinko
2009/7/21 Security Management list-subscripti...@secmgmt.com: I have a server, running Tomcat 5 with Java 4, and running Tomcat 6 with Java 6. There is another application that is an XMLRPC server on ports 8085-8100 The XMLRPC service is running on Tomcat 5, and a struts 2 application is

RE: Issues running 2 versions of tomcat?

2009-07-21 Thread Security Management
-Original Message- From: Konstantin Kolinko [mailto:knst.koli...@gmail.com] Sent: Tuesday, July 21, 2009 12:01 PM To: Tomcat Users List Subject: Re: Issues running 2 versions of tomcat? 2009/7/21 Security Management list-subscripti...@secmgmt.com: I have a server, running Tomcat 5

RE: providing downloading functionality for a file which is on disk

2009-07-21 Thread Caldarale, Charles R
From: Michael Ludwig [mailto:m...@as-guides.com] Subject: Re: providing downloading functionality for a file which is on disk Is there a way of including a second context with a web application in a similarly convenient way? No. The servlet spec expects webapps to be independent of each

Fwd: Is it not possible to install apache-tomcat-6.0.20 with a J2SE 5 JRE

2009-07-21 Thread Varuna Seneviratna
I installed Tomcat using apache-tomcat-6.0.20.exe But not as a service.Then from the bin I tried to run tomcat6.exe service runner But it did not start the service log is as follows [2009-07-21 20:02:34] [info] Procrun (2.0.4.0) started [2009-07-21 20:02:34] [info] Service Tomcat6 name Apache

RE: Is it not possible to install apache-tomcat-6.0.20 with a J2SE 5 JRE

2009-07-21 Thread Caldarale, Charles R
From: Varuna Seneviratna [mailto:varunasenevira...@gmail.com] Subject: Fwd: Is it not possible to install apache-tomcat-6.0.20 with a J2SE 5 JRE I installed Tomcat using apache-tomcat-6.0.20.exe But not as a service. First mistake. Then from the bin I tried to run tomcat6.exe service

Re: Is it not possible to install apache-tomcat-6.0.20 with a J2SE 5 JRE

2009-07-21 Thread Varuna Seneviratna
I installed Tomcat using apache-tomcat-6.0.20.exe But not as a service. First mistake. I did this after trying several times to install Tomcat as a service using the windows service installer. Then from the bin I tried to run tomcat6.exe service runner Second mistake - the

Fwd: Is it not possible to install apache-tomcat-6.0.20 with a J2SE 5 JRE: A new development

2009-07-21 Thread Varuna Seneviratna
The set up dialog box that pops up saying unable to proceed has has 3 buttons, the first is Abort second Retry, third Ignore.When I keep on clicking Retry for several times the setup goes a step forward and the Kaspersky icon at the bottom right corner display a message as NS130.TMP placed in low

Re: Is it not possible to install apache-tomcat-6.0.20 with a J2SE 5 JRE: A new development

2009-07-21 Thread Konstantin Kolinko
2009/7/21 Varuna Seneviratna varunasenevira...@gmail.com: The set up dialog box that pops up saying unable to proceed has has 3 buttons, the first is Abort second Retry, third Ignore.When I keep on clicking Retry for several times the setup goes a step forward and the Kaspersky icon at the

Re: Fwd: Is it not possible to install apache-tomcat-6.0.20 with a J2SE 5 JRE: A new development

2009-07-21 Thread André Warnier
Varuna Seneviratna wrote: ... Can it be because of Kaspersky setting that I am unable to install Tomcat service? Let me paraphrase this : During the Tomcat installation, I repeatedly hit my head to the desk. Can this be the reason that I have a headache ? Come on, as they say in

RE: Fwd: Is it not possible to install apache-tomcat-6.0.20 witha J2SE 5 JRE: A new development

2009-07-21 Thread Caldarale, Charles R
From: André Warnier [mailto:a...@ice-sa.com] Subject: Re: Fwd: Is it not possible to install apache-tomcat-6.0.20 witha J2SE 5 JRE: A new development Come on, as they say in Minnesota... Actually, they don't say that here. There's a lot of Yah, sure and Whatever (but not like a valley

Can a Realm communicate with a web application?

2009-07-21 Thread Mitch Claborn
I am toying with the idea of writing my own Realm for authentication. Much of the code and structures that I need are already present in the web application. Is there any way for the Realm to access Java objects from the web application? They don't appear to share the same class loader. As an

Re: Can a Realm communicate with a web application?

2009-07-21 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Mitch, On 7/21/2009 6:23 PM, Mitch Claborn wrote: I am toying with the idea of writing my own Realm for authentication. Much of the code and structures that I need are already present in the web application. Is there any way for the Realm to

Re: Fwd: Is it not possible to install apache-tomcat-6.0.20 with a J2SE 5 JRE: A new development

2009-07-21 Thread Varuna Seneviratna
Please read the whole story behind and reply without bulling.I am trying to figure out what is the cause for not being able to install Tomcat as a service when JRun can be .My guess was is Kaspersky blocking Tomcat setup since Kaspersky prompted for user's approval after clicking Retry several

Re: Fwd: Is it not possible to install apache-tomcat-6.0.20 with a J2SE 5 JRE: A new development

2009-07-21 Thread lanxiazhi
I wonder why you want to install tomcat as a service.In my mind,java is green software,and I always download a .zip or .gz file,and get it run in a specific folder,I think that will help to easy manage things. hope no bother. thanks. 2009/7/22 Varuna Seneviratna varunasenevira...@gmail.com