war in a ear
I am using eclipse for JBoss + Jsp pages + mysql...for a project..
when I run the project from eclipse , it deploys a war file , at JBoss_home/server/default/deploy , and the proj runs fine.....
now I want to create a ear file of the project ,
what I did is , I made a j2ee , enterprise application project in eclipse , and exported a ear file from it in the required path . The ear file know contains application.xml and a war file of the project which contains the jsp page .
In the ear-deployer.xml , I made the following changes ,
<attribute name="Isolated">true</attribute>
I am running the project as
http://localhost:8080/wardirectoryname/page1.jsp
I don't think I need to add , ear file name there in the path ??
now , what is happening , when I try to run the jsp page , the page loads till there are static components , and the point where dynamic page starts , it doesn't get loaded.
Can Some one guide me for it.
and when I deploy just war file it runs fine ...

