More help with VelocityViewServlet needed

2005-07-27 Thread Withers John Z
Title: Message Hello all. I know I've asked for help before and I know I've already asked this question before. I would, normally, search through the message archive, but my employer has seen fit to configure our firewall to 'block' that site... IMHO, its because the word 'mail' appears

Re: More help with VelocityViewServlet needed

2005-07-27 Thread Will Glass-Husain
MessageBy the way, try googling for velocity-user. There's a couple of different archives, not all of which include the term mail in the URL. - Original Message - From: Withers John Z To: 'Velocity Users List' Sent: Wednesday, July 27, 2005 6:17 AM Subject: More help

RE: More help with VelocityViewServlet needed

2005-07-27 Thread Withers John Z
Will, Thanks for the information. I found another archive easily. John John Withers -Original Message- From: Will Glass-Husain [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 27, 2005 8:59 AM To: Velocity Users List Subject: Re: More help with VelocityViewServlet needed MessageBy

Re: More help with VelocityViewServlet needed

2005-07-27 Thread Nathan Bubna
it's not clear to me from your code snippets just how the servlet is supposed to know which template to load and merge. how are you telling the servlet what resource to load? did you override the handleRequest(...) and/or getTemplate(...) methods? if so, what are they doing? On 7/27/05,

RE: More help with VelocityViewServlet needed

2005-07-27 Thread Withers John Z
Withers -Original Message- From: Nathan Bubna [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 27, 2005 12:16 PM To: Velocity Users List Subject: Re: More help with VelocityViewServlet needed it's not clear to me from your code snippets just how the servlet is supposed to know which template

Re: More help with VelocityViewServlet needed

2005-07-27 Thread Will Glass-Husain
. WILL - Original Message - From: Withers John Z [EMAIL PROTECTED] To: 'Velocity Users List' velocity-user@jakarta.apache.org Sent: Wednesday, July 27, 2005 10:28 AM Subject: RE: More help with VelocityViewServlet needed I think you've put your finger on the crux of my issue. I don't really, fully

Re: Help with VelocityViewServlet

2005-07-18 Thread Nathan Bubna
: Re: Help with VelocityViewServlet The not found error message, at least in tomcat, indicates that the servlet container can't find the servlet definition in the web.xml file or it can't find the servlet class anywhere in the classpath. Be sure the servlet is properly defined in your web.xml

RE: Help with VelocityViewServlet

2005-07-13 Thread Withers John Z
Withers -Original Message- From: Barbara Baughman [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 12, 2005 4:56 PM To: Velocity Users List Subject: Re: Help with VelocityViewServlet The not found error message, at least in tomcat, indicates that the servlet container can't find the servlet

Help with VelocityViewServlet

2005-07-12 Thread Withers John Z
Title: Message Greetings! I've been trying to sub-class the VelocityViewServlet to implement a web application I've been working on. I'm pretty sure I've over-ridden the various methods properly, but when I access http://server.com/blah/blah/brows, I get a message about the /browse

Re: Help with VelocityViewServlet

2005-07-12 Thread Barbara Baughman
The not found error message, at least in tomcat, indicates that the servlet container can't find the servlet definition in the web.xml file or it can't find the servlet class anywhere in the classpath. Be sure the servlet is properly defined in your web.xml file, with servlet-mapping. Be sure the