Am 05.01.2013 17:27, schrieb corina rus:
> type Status report
> message
> descriptionThe requested resource () is not available. (in browser)
> SEVERE: PWC6117: File "C:\Program Files
> (x86)\glassfish-3.1.2.2\glassfish\domains\domain1\docroot\StoreOnlineWEB-INF\createUserOrder.jsp"
> not found (in glassfish tab in netbeans)
>  
> If I try accessing the createUserOrder.jsp from another action bean it
> works, it even works when accessing it from UserOrdersAction, except
> on this operation.
>

I still have a bad feeling about the path within the SEVERE message. It
refers to a folder "...\StoreOnlineWEB-INF\..." which should definitely
be "...\StoreOnline\WEB-INF\..." instead. And on the other hand, I never
saw ForwardResolution paths that did not start with a "/" at the
beginning. So instead of

    return new ForwardResolution("WEB-INF/createUserOrder.jsp");

I would always use

    return new ForwardResolution("/WEB-INF/createUserOrder.jsp");

for the forward to the JSP file, including the slash at the beginning.
Maybe you need to recompile, redeploy and then restart the server to see
the new result (to check this, you could log the path in the event
handler before returning the ForwardResolution).

Crossing fingers,
Marcus
------------------------------------------------------------------------------
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. SALE $99.99 this month only -- learn more at:
http://p.sf.net/sfu/learnmore_122912
_______________________________________________
Stripes-users mailing list
Stripes-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/stripes-users

Reply via email to