Bear Bibeault wrote:You haven't given us any information that we can use.
But my guess is that you are using page-relative URLs to the various resources. That's fragile and brraks easily.
Here is some more information for you.
Assume that header and footer are totally static content. So, I made those as html files - header.html, footer.html
Now, Instead of placing these files in the ear, I want to place in the webserver(Apache) /static directory under htdocs. So that we can change the content without redeploying the ear file.
So, I need to include these files in each page means JSP.
If I say like,
I am getting exception like header.html not found. As I know, it is trying to find the header.html file in the application context path and failed.
My question is: How can I say this file fetch from webserver documents means from /static/header.html from htdocs.
Hope this helps to clarify/help me on this.