Hi All,
I have three war files (War-Common, War-Physical, War-Derivatives) and we are packaging them in an EAR file. I am able to access content (Images, CSS, JavaScripts etc.) of War-Common in War-Physical and War-Derivatives but I am not able to access content of WEB-INF folder of War-Common War. We are acutally placing jsp custom tags inside it but I am not able to access them.
I tried:
<script type="text/javascript" src="/scripts/test.js"></script>
<script type="text/javascript" src="/WEB-INF/tags/Calendar.tag"></script>
But I am not able to use Calendar.tag.
Its not only tags that cannot be accessed, I am not able to access jsp from WEB-INF folder in War-Physical and War-Derivatives. I guess you cannot access content of WEB-INF in other war files.