[Webwork-user] actions not returning view correctly
Brought to you by:
baldree,
rickardoberg
From: G.L. G. <ga...@gr...> - 2002-08-17 23:19:45
|
I've got a problem where an action is not returning the view in my views.properties file. When I browse my pages, all I'm getting back is a completely blank page (no errors whatsoever, just blank white). I'm using JBoss 3.0.1 w/ Jetty. --- snip (my Action) public class Scheduler extends ActionSupport implements ParameterAware { ... // all my parameters are collected correctly public String doExecute() throws Exception { ... // it reaches this point return "product.success"; } ... --- snip (views.properties) velocity.Scheduler.product.success=adm_scheduler/scheduler.vm I also have this package configured in webwork.properties. Any help much appreciated. |