[JBoss JIRA] (ARQ-1631) Deployment on isolated WLS managed servers
by Vitalii Chepeliuk (JIRA)
Vitalii Chepeliuk created ARQ-1631:
--------------------------------------
Summary: Deployment on isolated WLS managed servers
Key: ARQ-1631
URL: https://issues.jboss.org/browse/ARQ-1631
Project: Arquillian
Issue Type: Feature Request
Security Level: Public (Everyone can see)
Reporter: Vitalii Chepeliuk
If WLS managed servers are clustered then to deploy any APP I need only specify target attr in arquillian.xml and one Deployment method
But if they are isolated and I need to deploy APP on each managed servers, like in following code
@Deployment(name = "wls_managed_8001")
@TargetsContainer("wsl01")
public static WebArchive createDeployment() {
WebArchive jar = createWebArchive(WAR_NAME)
.addAsManifestResource(MANIFEST_FILE_NAME);
return jar;
}
@Deployment(name = "wls_managed_8002")
@TargetsContainer("wls02")
public static WebArchive createDeployment2() {
WebArchive jar = createWebArchive(WAR_NAME)
.addAsManifestResource(MANIFEST_FILE_NAME);
return jar;
}
@Test
@InSequence(1)
@OperateOnDeployment("wls_managed_8001")
public void testAddData_wls01() throws Exception {
// Add some data to APP
}
@Test
@InSequence(2)
@OperateOnDeployment("wls_managed_8002")
public void testCheckData_wls02() throws Exception {
// Verify if data are propagated
}
But there is NO support for it cause every APP we want to deploy is managed through AdminServer and then it is sending it to managed servers
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira