Re: tomcat tuning

2003-03-17 Thread Cédric Viaud
Hi, I, personnaly, search archives using : http://marc.theaimsgroup.com/?l=tomcat-userr=1w=2 Hope this helps, Cédric - Original Message - From: Kapil Sharma [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Monday, March 17, 2003 5:33 PM Subject: RE: tomcat tuning

Re: tomcat tuning

2003-03-17 Thread Cédric Viaud
Sorry, i was responding to archive topic mail. Cédric - Original Message - From: Cédric Viaud [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Monday, March 17, 2003 5:37 PM Subject: Re: tomcat tuning Hi, I, personnaly, search archives using : http

Re: apache web server and Tomcat

2003-02-21 Thread Cédric Viaud
Hi, to make Tomcat work with Apache is not really complicated, but need a certain amount of configuration. First install Apache and Tomcat (on the same computer or on two differents one). Then you'll need to install a connector. I actually use Apache 1.3.x with Tomcat 4.0.4 LE, and my connecter

Re: Web-application obfuscation issues

2003-02-18 Thread Cédric Viaud
Hi ! From who do you want to hide your code ? If you want to hide it to the client (=browser), there's no need to obfuscate your classes. All your classes or lib are under /WEB-INF directory, a compliant HTTP server shouldn't allow to see them. If you want to hide to the server administrator,

Re: How to specify a name for a content beeing served by s servlet

2003-01-14 Thread Cédric Viaud
. Cédric - Original Message - From: Craig R. McClanahan [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Thursday, January 09, 2003 7:23 PM Subject: Re: How to specify a name for a content beeing served by s servlet On Thu, 9 Jan 2003, Cédric Viaud wrote: Date

Re: file name

2003-01-14 Thread Cédric Viaud
You have to generate a specific HTTP header for this. Do something like : response.setHeader(Content-Disposition,attachment; filename=+nameOfTheFile); I got this tip few days ago on this list. Regards, Cédric - Original Message - From: Felipe Schnack [EMAIL PROTECTED] To: Tomcat

How to specify a name for a content beeing served by s servlet

2003-01-09 Thread Cédric Viaud
Hi, i would like to know if it is possible to indicate in the HTTP header of a response a name for a ressource. Let be a little clearer. I got a controler servlet wich map all request with *.do. I check the URL use the name before the .do to know the command. For exemple, if the request is

Re: Beginner

2002-12-11 Thread Cédric Viaud
And what do you get when you type : http://localhost:8080 on a browser on the computer where Tomcat is installed ? Do you see the Tomcat home page ? HTH, Cédric - Original Message - From: Denis Haskin [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Wednesday, December

Re: tomcat + eclipse

2002-12-09 Thread Cédric Viaud
06, 2002 1:22 PM Subject: Re: tomcat + eclipse And debugging JSP... do you know it works? Em Sex 06 Dez 2002 08:18, Cédric Viaud escreveu: The answer is YESSS : http://www.sysdeo.com/eclipse/tomcatPlugin.html And it works fine. HTH, Cédric - Original Message

Re: tomcat + eclipse

2002-12-06 Thread Cédric Viaud
The answer is YESSS : http://www.sysdeo.com/eclipse/tomcatPlugin.html And it works fine. HTH, Cédric - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, December 04, 2002 11:27 AM Subject: tomcat + eclipse Hi I'm using Eclipse as my IDE

Re: How do I access files above and below \web-inf folder?

2002-12-02 Thread Cédric Viaud
Or better than a servlet (wich can stop and re-start for many reasons on the Servlet Container) use a listener if you use 2.3 servlet version. Easy to implements, and certainly safer then using the init() method of a servlet. See the servlet specification SRV.10.2 Hope it helps, Cédric -

Re: Pb with HEAD request

2002-11-27 Thread Cédric Viaud
request from the protected service method and handles the request. Default action for doHead is to simply call doGet Cédric Viaud [EMAIL PROTECTED] wrote on 26.11.2002 15:32:45: Hi, I have Tomcat server 4.0.4 on NT 4 that contains a servlets in charge to create SVG content. The client is Internet

Pb with HEAD request

2002-11-26 Thread Cédric Viaud
Hi, I have Tomcat server 4.0.4 on NT 4 that contains a servlets in charge to create SVG content. The client is Internet Explorer 5.5. It loads the following simple HTML page : html body embed width=200 height=200 src=http://localhost:8080/myContext/MyServlet /body /html The problem is that my

Re: SUCCESSFUL Tomcat Install!

2002-11-20 Thread Cédric Viaud
I'm sorry, but Tomcat is not a J2EE container. It is only a servlet container. I don't think that a J2EE container really means something. An application server can be J2EE compliant if he is : servlet container, EJB container, and everything else defined in the J2EE specification. There's a

Re: debugging servlets?

2002-10-24 Thread Cédric Viaud
, October 23, 2002 8:51 PM Subject: Re: debugging servlets? On Wed, 23 Oct 2002, Cédric Viaud wrote: Try using Eclipse with the Tomcat plug-in. You can run your web application and use the debugger at the same time. Very very convenient !!! http://eclipse.org/eclipse/faq/eclipse-faq.html

Re: debugging servlets?

2002-10-23 Thread Cédric Viaud
Try using Eclipse with the Tomcat plug-in. You can run your web application and use the debugger at the same time. Very very convenient !!! Regards, Cédric - Original Message - From: Jiann-Ming Su [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, October 23, 2002 5:12 PM

Re: OT - Jdk1.4 XML support

2002-08-30 Thread Cédric Viaud
Hi, as you now get with the JDK 1.4 JAXP, and defaults DOM, SAX parser, XSL-T processor, you can do quite good job with XML. Be sure to understand that JAXP is just a way to access to underlying DOM , SAX and XSL-T implementation. The default ones in JDK 1.4 seems to be (looking at the classes)

[OFF-TOPIC] Tomcat 4.0.4 LE, Eclipse, JAXP, JAXB and parsing problem

2002-08-28 Thread Cédric Viaud
Hi, maybe is this off-topic. In case ignore this, and sorry for bothering. I develop an application running under Tomcat 4.0.4 LE (light edition) wich uses JAXP. I use JAXP for XML parsing, and XML transformation. It almost work fine for everything. I also use JAXB to map XML file into Java

Re: Access Parameter

2002-08-14 Thread Cédric Viaud
As JSP are compiled as servlets, you can do with JSP everything you can do with servlets. Check for the exact syntax. Regards, Cédric - Original Message - From: [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Tuesday, August 13, 2002 6:32 PM Subject: Access

Re: Bean on Tomcat

2002-08-14 Thread Cédric Viaud
Hi, may you precise what your aiming at ? If you want tu use EJBs, Tomcat is not en EJB container. You then should find one (JBoss is free). Regards, Cédric - Original Message - From: Vishal Mukherjee [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Wednesday,

Re: Access Parameter

2002-08-14 Thread Cédric Viaud
I totaly agree with Yoav comment. I just say that technicaly, it's exactly the same, and you should be aware of it. In fact, i have ever initiated a project where we finaly only use JSP for many reasons (principaly , the team was very new to Java/Internet/...), and make it work. BUT the result

Re: filter

2002-08-14 Thread Cédric Viaud
filter-classcom.test.FilterTest/filter-name Your end tag dosen't fit your start tag. change it to : filter-classcom.test.FilterTest/filter-class regards, Cédric - Original Message - From: Felipe Schnack [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, August 14,

Re: Tomcat, JAXB and SecurityManager

2002-08-12 Thread Cédric Viaud
Thanks, a lot for your help. Yoav Shapira answer make me think about Tomcat version, and i've just tried to run under Tomcat 4.0.4 LE (light edition) this morning. The problems has gone away. Thanks to all, Cédric PS : Yoav, in fact when i have write despited i meant depressed (but i don't

Re: new to tomcat

2002-08-12 Thread Cédric Viaud
No, you can deploy it everywhere, but if you do so, you have to declare your application in the %TOMCAT_COME%/conf/server.xml At the end, of the file INSIDE the HOST/HOST element, add something like the following : context path=/applicallname docBase=d:/applidir/everywhereyouwant debug=0

Tomcat, JAXB and SecurityManager

2002-08-09 Thread Cédric Viaud
Hi, i'm using JAXB and Tomcat 4.0.3 on NT 4. I've got an application which generate HTML pages with XML and XSL-T. For some particular point i use classes generated by JAXB. If i test my code as a standard Java application (class with a main method), it works perfectly. If i launch it from a

Re: filters

2002-08-09 Thread Cédric Viaud
Hi, according to the spec, i think it is normal. It is written that you can have these mappings : - begining with '/' and ending with '/*' is for path mapping (not your case) - begining with '*.' is for extension mapping (not your case) - only '/' indicate defaut servlet of the

Re: howto avoid overuse of session object?

2002-08-01 Thread Cédric Viaud
Hi, FIRST For non-specific Tomcat questions, it exists : [EMAIL PROTECTED] There's also an other one wich is JSP oriented. SECOND All best practice i know says that you must minimize the ammount of data stored in the session. So, the traditional approach of this problem is to only store the