tags:

views:

100

answers:

1

I am currently working on a web app that had previously run and deployed fine but after making a recent change JBoss will no longer deploy a complete war file. I was hoping someone here would have some advice on how to fix it. JBoss deploys everything in WEB-INF and META-INF fine but nothing in the class folder is getting deployed. I am attempting to deploy as exploded.

war:

META-INF  
--Manifest.mf   
WEB-INF  
--classes    
----META-INF   
------xfire  
--------services.xml  
--lib  
-----lots of jars  
--ibm-web-bnd.xmi  
--ibm-web-ext.xmi 
--jboss-web.xml  
--log4j.properties  
--web.xml  
--xfire-servlet.xml

Edit: Sorry yes I meant class folder.

+1  A: 

Hi,

Have a look at:

How to configure Jboss AS

Koekiebox