Nathan Bubna wrote:
and what does your web.xml have?

Sorry, plain vanilla:

  <!-- Define Velocity template compiler -->
  <servlet>
   <servlet-name>velocity</servlet-name>
   <servlet-class>
     org.apache.velocity.tools.view.servlet.VelocityViewServlet
   </servlet-class>

   <init-param>
     <param-name>org.apache.velocity.toolbox</param-name>
     <param-value>/WEB-INF/toolbox.xml</param-value>
   </init-param>

   <init-param>
     <param-name>org.apache.velocity.properties</param-name>
     <param-value>/WEB-INF/velocity.properties</param-value>
   </init-param>

   <load-on-startup>10</load-on-startup>
  </servlet>

  <!-- Map *.vm files to Velocity -->
  <servlet-mapping>
   <servlet-name>velocity</servlet-name>
   <url-pattern>*.vm</url-pattern>
  </servlet-mapping>

  <!-- Define Velocity template compiler -->


I've gotten a little further along. A number of apache.commons jar files were missing. Once I copied them over I could see the "Toolbox setup complete" message in the catalina.log.

Still not getting anything to render using "$import.class.name" or $import.read("url") though.


Thanks for all of your help.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to