We are hosting a site for a client and they want us to include the header they have on their server into the pages we are hosting. So whenever they change it, it will automatically change on our site.
We are attempting to use the "include" tag in our JSP code. The code we are using is as follows:
<%@ include file="www.CLIENT.com/CLIENT2/MiddlePageFiles/Vendor_header.html" %> .
We also tried
<%@ include file="http://www.CLIENT.com/CLIENT2/MiddlePageFiles/Vendor_header.html" %> .
Unfortunately these aren't working for us. What seems to be happening is that the code is ONLY looking locally for this file and never seems to go "outside" to look for it.
We are able to pull the header into our page when we use an iframe but because of the way the header is constructed/coded the mouse over drop-down menus aren't working as they should when we use the iframe. The drop-down menus are "cascading" underneath the rest of the content on the page and we weren't able to bring them to the "top".
As a temporary work around, were are hosting the HTML on our own servers.
Any ideas?