Re: How send svg content to browser as response

2006-09-06 Thread Giorgio Clavelli
I'm not sure if this can help, but some time ago, I played around SVG (only with Firefox implementation) and was able, after my search homework to have SVG content in a JSP file. If you are just mocking around and hasn't strict requirements on using specifically servlet, then have a look at this

Re: How send svg content to browser as response

2006-09-05 Thread Giorgio Clavelli
If you are targeting firefox's svg implementation. Have a read at this first: http://jwatt.org/svg/authoring/ On 9/5/06, Markus Schönhaber [EMAIL PROTECTED] wrote: prad wrote: Am processing some svg files on server side and after processing i need to send the svg as response...I set the mime

Re: How can I create/configure a jsp servlet without a .jsp extension

2006-05-30 Thread Giorgio Clavelli
I'm not an expert, but considering that JSPs are basically servlets, I'm pretty sure you should find a solution, to satisfy your requirement, by configuring the JSP equivalent of a servlet-mapping in the web.xml of your application. On 5/31/06, Sumeet Keswani [EMAIL PROTECTED] wrote: This

Re: Tomcat - Hibernate

2006-03-01 Thread Giorgio Clavelli
Hi, I'm not an exper at all, but I try to put my 2 cents. The fact that your app can connect successfully after the server restart, suggests that you should have your app's context.xml (or whatever it is called) not in the server.xml but in the correct location inside your app directories. I seem

Re: Installation file

2006-02-23 Thread Giorgio Clavelli
My 2 cents If there is zip file, it is likely to be as in successive versions. It is pretty simple either launching it as service or manually by its batch files. I started with version 4 and it didn't changed till 5.5, from this point of view. On 2/23/06, Ludvig Lindström [EMAIL PROTECTED] wrote:

Re: Question about deployment of web app

2006-02-14 Thread Giorgio Clavelli
My 2 cents is on you have may have missed something in recreating your environment. Hence, I would test it with some very simple code just to ensure classpath dependencies are fine. Only after that check, if it doesn't resolve the problem, I would face the app code. On 2/14/06, Lian Liming [EMAIL

Re: Problem with installation

2006-02-04 Thread Giorgio Clavelli
Hi, I'm not sure what your problem with the manager is, but about the tomcat-user.xml this is what I'm using on my localhost installation and it works. ?xml version='1.0' encoding='utf-8'? tomcat-users role rolename=tomcat/ role rolename=role1/ role rolename=manager/ role rolename=admin/

Re: Absolute Guide for config of JDBC Connection Pool ?

2006-01-19 Thread Giorgio Clavelli
Great stuff Len!!! Very much appreciated A lost new java programmer :) On 1/20/06, Len Popp [EMAIL PROTECTED] wrote: I don't know if there's a complete top-to-bottom guide, but here's what I know from setting up connection pooling under 5.5.12: 1. The JDBC driver JAR must go in the

Re: Design Guidance requested for Tomcat newbie - servlets, MySQL access, etc.

2006-01-18 Thread Giorgio Clavelli
Hi, I'm in your same boat (like many I guess). In an effort to learn best pratice and avoiding to reinvent the wheel, I thought, it may be wise to stick with one of the several java web application frameworks. I'm trying with Spring, which seems quite good, but at least for me, it is not that easy

Re: Design Guidance requested for Tomcat newbie - servlets, MySQL access, etc.

2006-01-18 Thread Giorgio Clavelli
Ah, well, it's for things like this that we schedule a long test/fix cycle, right? Indeed... :( Here the links to those frameworks: http://www.springframework.org/ http://wicket.sourceforge.net/ Have fun. Giorgio On 1/19/06, Warrick Wilson [EMAIL PROTECTED] wrote: Hi, I'm in your same

Re: Many questions are left unanswered.

2005-12-16 Thread Giorgio Clavelli
Bharathi, Don't be so tragic, I'm sure everybody appreciated you good intentions. It is just not practical what you suggested. Only who never say something, never make mistaks... On 12/17/05, Prathibha, Bharathi [EMAIL PROTECTED] wrote: Hi Mark, After seeing one of ur mails As u are

Re: What is the admin login username

2005-12-06 Thread Giorgio Clavelli
You have to edit your CATALINA_HOME/conf/tomcat-users.xml so to have an account with manager and admin rights. At least, I'm using it in localhost for training and it works fine. This is nearly how mine looks like: ?xml version='1.0' encoding='utf-8'? tomcat-users role rolename=tomcat/ role

Re: problem loading class in TomCat 5.5.9

2005-12-05 Thread Giorgio Clavelli
It seems you have a classpath problem. You should add to your classpath the jUnit jar file. Hope it helps. Giorgio On 12/6/05, Camila Kozlowski Della Corte [EMAIL PROTECTED] wrote: Greetings, I am developing an application with JSP, and using JSF. Here is a description of the problem I had

Re: Is this good flow control?

2005-11-04 Thread Giorgio Clavelli
Hi all, I thought that once an user is authenticated, using the session object at the head of each page, should be nearly a default way to ensure only allowed user can navigate the 'secured pages'. I'm relatively new to JSP/ Servlet programming, so more than an answer, I guess mine is a query