<profile> <id>was-remote-8</id> <dependencies> <dependency> <groupId>org.jboss.arquillian.container</groupId> <artifactId>arquillian-was-remote-8</artifactId> <version>1.0.0-SNAPSHOT</version> </dependency> </dependencies> </profile>
A DeployableContainer implementation that can connect and run against a remote (different JVM, different machine) running a WebSphere Application Server V8.0 profile. This implementation has no lifecycle support, so it can not be started or stopped.
Container Injection Support Matrix
@EJB |
@EJB (no-interface) |
@Inject (CDI) |
@Inject (MC) |
@PersistenceContext @PersistenceUnit |
|
|
|
|
|
Prerequisite Version
This DeployableContainer has been tested with WebSphere Application Server V8.0.0.0.
Default Protocol: Servlet 3.0
Container Configuration Options
Name |
Type |
Default |
Description |
remoteServerAddress |
String |
localhost |
Hostname for the target machine where the WAS profile is running. |
remoteServerSoapPort |
Integer |
8880 |
SOAP port of the target WAS profile. |
securityEnabled |
Boolean |
false |
Defines whether security is enabled. |
username |
String |
admin |
The username to use to connect to the target. - This is required even when security is disabled. |
password |
String |
admin |
The password to use to connect to the target. |
sslTrustStore |
String |
"" |
The location of the SSL Trust store to use. |
sslTrustStorePassword |
String |
WebAS |
The password for the SSL Trust store. |
sslKeyStore |
String |
"" |
The location of the SSL Key store to use. |
sslKeyStorePassword |
String |
WebAS |
The password for the SSL Key store. |
Example of Maven profile setup
<profile> <id>was-remote-8</id> <dependencies> <dependency> <groupId>org.jboss.arquillian.container</groupId> <artifactId>arquillian-was-remote-8</artifactId> <version>1.0.0-SNAPSHOT</version> </dependency> </dependencies> </profile>