JSTL C:import - java script include issue
Hi
My application is deployed in JBoss application server.
I need to include a HTML file ( which is present in different apache server ) into the JSP.
Im using the following jsp snippet to accomplish the same.
<c:import url="--apache server html file path--"/>
Here is where i need help..
The HTML file has few java script includes of the following type.
<script language="JavaScript" src="../../../globalscript.js"> </script>
The java script files resides in Apache server.
Im not able to give absolute url to include javascript due to other issue.
But when i import the HTML, the app server is searching for java script files in JBoss environment and not in Apache environment.Hence, the scripts files are not properly included.
Is there any way to include java scripts in such case?
Thanks
Prakash A

