Path Trouble
Hi my JSP pages are having trouble accesing external resources such as CSS files, Images, and JavaScript. I am able to forward to the JSP pages fine, but basically nothing else.
I've been printing the path in the JSP with:
<%String getpath=pageContext.getRequest().getRealPath("/");%>
<%=getpath%>
and it prints:
/Users/tbs/Workspace/Office_Space_Mark_2/
that's the correct location under which all of my resources exist and the jsp is running from... If i manually type in the address of something i want ie:
http://localhost:8080/Office_Space_Mark_2/view_style.css it doesn't come up... eventhough it's directly under that directory.
any suggestions?

