-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
da32636
commit bcba426
Showing
1 changed file
with
63 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,64 @@ | ||
== Arquillian Containers for WebLogic | ||
|
||
|
||
=== Arquillian WebLogic Managed REST Container Adapter | ||
This adapter manages the WebLogic Server instance lifecycle, and uses the WebLogic Server REST Management API for application deployments. | ||
|
||
|
||
.Dependencies | ||
This adapter is based on JAX-RS, and has been tested with Jersey 2 | ||
|
||
[options="header"] | ||
|======================= | ||
|GroupId |ArtifactId |Version | ||
|org.glassfish.jersey.core |jersey-common |2.18 | ||
|org.glassfish.jersey.core |jersey-client |2.18 | ||
|org.glassfish.jersey.core |jersey-media-json-processing |2.18 | ||
|org.glassfish.jersey.core |jersey-media-multipart |2.18 | ||
|======================= | ||
|
||
|
||
.Configuration Properties | ||
[options="header"] | ||
|======================= | ||
|Property Name |Value Description |Example | ||
|middlewareHome |The middleware home directory (e.g., $MW_HOME) |/Oracle_home | ||
|wlHome |The WebLogic home directory (e.g., $WL_HOME) |/Oracle_home/wlserver | ||
|domainDirectory |The directory of the domain to which the target server belongs |/mydomain | ||
|adminUrl |The WebLogic Server administration HTTP URL |http://localhost:7001 | ||
|adminUserName |The WebLogic Server administrator username | | ||
|adminPassword |The WebLogic Server administrator password | | ||
|target |The deployment target WebLogic Server server name |AdminServer | ||
|logRESTMessages |(Optional) true, log REST HTTP messages; false, disables logging of these, unless logRESTEntities is true | | ||
|logRESTEntities |(Optional) true, log REST entities (and the associated HTTP messages); false, do not log REST entities | | ||
|======================= | ||
|
||
=== Arquillian WebLogic Remote REST Container Adapter | ||
This adapter interacts with a running WebLogic Server instance (local or remote), and uses the WebLogic Server REST Management API for application deployments. | ||
|
||
|
||
.Dependencies | ||
This adapter is based on JAX-RS, and has been tested with Jersey 2 | ||
|
||
[options="header"] | ||
|======================= | ||
|GroupId |ArtifactId |Version | ||
|org.glassfish.jersey.core |jersey-common |2.18 | ||
|org.glassfish.jersey.core |jersey-client |2.18 | ||
|org.glassfish.jersey.core |jersey-media-json-processing |2.18 | ||
|org.glassfish.jersey.core |jersey-media-multipart |2.18 | ||
|======================= | ||
|
||
|
||
.Configuration Properties | ||
[options="header"] | ||
|======================= | ||
|Property Name |Value Description |Example | ||
|adminUrl |The WebLogic Server administration HTTP URL |http://localhost:7001 | ||
|adminUserName |The WebLogic Server administrator username | | ||
|adminPassword |The WebLogic Server administrator password | | ||
|target |The deployment target WebLogic Server server name |AdminServer | ||
|logRESTMessages |true, log REST HTTP messages; false, disables logging of these, unless logRESTEntities is true | | ||
|logRESTEntities |true, log REST entities (and the associated HTTP messages); false, do not log REST entities | | ||
|======================= | ||
|