Hello, I have recently started using Stripes for a project in school, and I 
came across a problem which occurs many times. I get errors of the following 
type:
 
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)
 
This particular error occured on the piece of code:
 
public Resolution displayDetails() {
        getContext().getRequest().getSession().setAttribute("orderid", orderid);
        OrderMethods orderAction = new OrderMethods();
        String usr = orderAction.findByUsername(username, orderid);
        if(usr.equals("Yes"))
        return new ForwardResolution("WEB-INF/displayUserOrderDetails.jsp");
        else
        {
            errors = "The selected order id does not belong to you. Please 
select a valid id.";
            return new ForwardResolution("WEB-INF/seeUserOrdersDetails.jsp");
        }
        
        //getContext().getRequest().getSession().setAttribute("orderid", 
orderid);
        //return new ForwardResolution("WEB-INF/displayUserOrderDetails.jsp");
    }
 
Here I try to see if a user tries to view an order which is his or an order 
which belongs to someone else. The problem appears when entering the else 
branch, at the return forward resolution. How can I fix this?
------------------------------------------------------------------------------
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