Re: OutOfMemory errors compiling JSPs on 5.0.16 and 5.5.4

2004-11-13 Thread Remy Maucherat
On Fri, 12 Nov 2004 17:17:28 -0800, Kevin A. Burton [EMAIL PROTECTED] wrote: - For all my JSPs I fetch them with the URL foo.jsp?jsp_precompile=true to trigger precompilation How many JSPs must be compiled to cause problems ? Note that the VM still shows plenty of memory so I'm not sure what

RE: Tomcat auth error?

2004-11-13 Thread Mark Thomas
Looks like an error in your code. This isn't a tomact problem. -Original Message- From: Sunitha Kumar [mailto:[EMAIL PROTECTED] Sent: Thursday, November 11, 2004 9:53 PM To: [EMAIL PROTECTED] Subject: Tomcat auth error? ERROR [http8443-Processor20] authentication.Credentials

RE: Newbie: problem with WebDav Tomcat servlet

2004-11-13 Thread Mark Thomas
This works for me. Did you restart the app after changing web.xml? What version of tomcat are you using? Mark -Original Message- From: Alessandro Ronchi [mailto:[EMAIL PROTECTED] Sent: Friday, November 12, 2004 11:40 AM To: [EMAIL PROTECTED] Subject: Newbie: problem with WebDav

RE: CGI Servlet environmental variables

2004-11-13 Thread Mark Thomas
A couple of options: 1. Any query parameter or POSTed parameter should be passed to the CGI script on the command line in the form perl arg1=value1 arg2=value2 etc 2. The latest CGI script from CVS (the one in 4.1.31 contains a JDK 1.4 dependency) supports passing enviroment parameters to the CGI

RE: Newbie: problem with WebDav Tomcat servlet

2004-11-13 Thread Alessandro Ronchi
Il giorno sab, 13-11-2004 alle 12:18 +, Mark Thomas ha scritto: This works for me. Did you restart the app after changing web.xml? Yes, I did. What version of tomcat are you using? Apache Tomcat/4.1.27-13 Another question: is it possible to access to a webapp dir contents with this

RE: Newbie: problem with WebDav Tomcat servlet

2004-11-13 Thread Mark Thomas
Another question: is it possible to access to a webapp dir contents with this webdav url: http://host:8080/webapp/webdav/? No. The url is http://host[:port]/context/pathtofile/file Must I add any configuration directive to get this working? You shouldn't need to. You might want to try /*

Re: Problem with classpaths

2004-11-13 Thread QM
On Sat, Nov 13, 2004 at 10:33:24AM +0530, [EMAIL PROTECTED] wrote: : I've placed all my classes in : CATALINA_HOME/webapps/myapp/WEB-INF/classes : I've placed all my jars including the jgl3.1.0.jar(that contains : com.objectspace.jgl.Sequence) in CATALINA_HOME/webapps/myapp/WEB-INF/lib : : and

a problem with a first app

2004-11-13 Thread Alessandro Ronchi
I didn't managed to get webdav working, and I have some other troubles. If i follow the simple instructions written here http://sxs.thexdershome.com/internet_serving/c292.html to deploy a jsp page, I get the error at the bottom of the page. Another question: is there any tomcat 5.5.* rpm file

Good tutorial on embedded Tomcat

2004-11-13 Thread V D
I try to find good information on programming with embedded Tomcat, but did not find much. I managed to get it running. However, if there's more indepth information, it would be much easier. I didn't see much information on Tomcat website. Did I miss something? There's the API, which is

Re: Good tutorial on embedded Tomcat

2004-11-13 Thread Remy Maucherat
On Sat, 13 Nov 2004 11:05:49 -0500, V D [EMAIL PROTECTED] wrote: I try to find good information on programming with embedded Tomcat, but did not find much. I managed to get it running. However, if there's more indepth information, it would be much easier. I didn't see much information on

Re: a problem with a first app

2004-11-13 Thread Alessandro Ronchi
Il giorno sab, 13-11-2004 alle 17:00 +0100, Alessandro Ronchi ha scritto: I didn't managed to get webdav working, and I have some other troubles. If i follow the simple instructions written here http://sxs.thexdershome.com/internet_serving/c292.html to deploy a jsp page, I get the error at the

RE: Newbie: problem with WebDav Tomcat servlet

2004-11-13 Thread Alessandro Ronchi
Il giorno sab, 13-11-2004 alle 13:57 +, Mark Thomas ha scritto: Another question: is it possible to access to a webapp dir contents with this webdav url: http://host:8080/webapp/webdav/? No. The url is http://host[:port]/context/pathtofile/file Here is my example: I have a context

Re: Good tutorial on embedded Tomcat

2004-11-13 Thread sven morales
The new book on Tomcat5 Unleashed by Moczar covers embedded tomcat, but for only a chapter. The wrox book professional tomcat 5 also has chapter, but you know, a chapter can't possibly cover it in-depth. The book which probably covers Tomcat in-depth programmaticallywise is the How Tomcat

Re: SocketException

2004-11-13 Thread Bill Barker
Hollerman Geralyn M [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Peter Crowther wrote: SEVERE: Remote Host /xxx.xxx.xxx.xxx SocketException: Invalid argument Hmm. An EINVAL from the socket layer. Are you running UNIX or Windows? Depending on which, I'd get hold of a system

RE: Newbie: problem with WebDav Tomcat servlet

2004-11-13 Thread Mark Thomas
From: Alessandro Ronchi [mailto:[EMAIL PROTECTED] Here is my example: I have a context named dwers, and I correctly execute this jsp page: http://localhost:8080/dwers/index.jsp located on /usr/share/tomcat/webapps/dwers/index.jsp what's the correct webdav url? All tomcat responses are

RE: How to fix: Tomcat responce time gets to 10-200 seconds once a day

2004-11-13 Thread Roman Zhovtulya
Thank you very much for all the hints. I'll try checking the points you mentioned later. However, for test purposes I've moved the database to another PC within the same network and the problem seems to have gone away! Other PC (Database server) runs SuSE 9.0 (with MySQL 3.23.55), 2 Pentium 4

Soap under Tomcat

2004-11-13 Thread feilong
Hallo all, I am a beginner with programming web-service with soap protocol under Tomcat web server. I find a link http://www.onjava.com/pub/a/onjava/2002/02/27/tomcat.html?page=1 which introduce how to use soap in Tomcat and deploy web services and a simple client to call this web service I

Webgui framework

2004-11-13 Thread Alessandro Ronchi
Is there a jsp framework that helps developing of web applications, helping developers handling tabs, buttons, choices and other similar application needs, avoiding them to write the presentation layer specific classes, such as tables, images for buttons and so on? -- Alessandro Ronchi [EMAIL

Re: OutOfMemory errors compiling JSPs on 5.0.16 and 5.5.4

2004-11-13 Thread Kevin A. Burton
Remy Maucherat wrote: On Fri, 12 Nov 2004 17:17:28 -0800, Kevin A. Burton [EMAIL PROTECTED] wrote: - For all my JSPs I fetch them with the URL foo.jsp?jsp_precompile=true to trigger precompilation How many JSPs must be compiled to cause problems ? About 50 or so... it changes every

Re: OT: hosting recommendations?

2004-11-13 Thread phil campaigne
Ben Souther wrote: I use assortedinternet.com. Tomcat/postgres for 30.00 to 35.00 they might have other plans too On Fri, 2004-11-12 at 14:34, Woodchuck wrote: hihi all, can anyone recommend hosters that are Tomcat/Java friendly and offer private JVMs for cheap monthly cost? (cheap to me is

Re: OT: hosting recommendations?

2004-11-13 Thread Vic
http://order.1and1.co.uk/xml/order/Server They also have US hosting. .V phil campaigne wrote: Ben Souther wrote: I use assortedinternet.com. Tomcat/postgres for 30.00 to 35.00 they might have other plans too On Fri, 2004-11-12 at 14:34, Woodchuck wrote: hihi all, can anyone recommend hosters