I have developed a web-service client and tested it as ear on local jboss always. this ear work fine. Now I want to create war for this application. whenever I tries:
project:export:war file
in eclipse, it creates war without any third party dependency jars files added to it. This war does not gets deployed on jboss successfully. Can anybody guide me hw to create war from ear.
warshould simply be a module inside theear. You should be able to unzip theearand use thewarinside it, unless theearhas some weird shared library or classpath setup. - NilsH