I have a jboss instance that I use along with eclipse.
The projects are instantiated by JBOSS by the following configuration:
<Attribute name = "URLs">
Deploy /
/ Home / frameworks / Development / workspace / SECTOR / app /,
/ Home / frameworks / Development / workspace / SECTOR / dependency /,
/ Home / frameworks / Development / workspace / ADMIN / app /
</ Attribute>
SECTOR and ADMIN are applications, SECTOR / DEPENDENCY are libraries and other things inherent to both projects. The problem is that it is not possible to initiate the two applications together, since an ADMIN / DEPENDENCY object has been created that can not be initialized together with SECTOR / DEPENDENCY.
<Attribute name = "URLs">
Deploy /
/ Home / frameworks / Development / workspace / ADMIN / app /
/ Home / frameworks / Development / workspace / ADMIN / dependency /
</ Attribute>
<Attribute name = "URLs">
Deploy /
/ Home / frameworks / Development / workspace / SECTOR / app /
/ Home / frameworks / Development / workspace / SECTOR / dependency /
</ Attribute>
Is it possible to instantiate the two applications through the same ip and same port ??