"Remote" argument support for weblogic.Deployer #20
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hi everyone,
I'm currently using Arquillian on a weblogic instance running on a remote machine (ie. not sharing the file system of the arquillian instance).
To do so, I had to add support for the "-remote" argument to the weblogic.Deployer command, here is the associated branch. This argument is available from at least WLS 9: http://docs.oracle.com/cd/E13222_01/wls/docs90/deployment/wldeployer.html
I also searched for a similar workaround for the full-JMX client (used in the 12.1.2 adapter), but without luck so far (there seems to be no way to upload the application file to the target instance using only JMX).
However, I was able to sucessfuly perform a deployment with the JSR-88 API (used internally by weblogic.Deployer). This API is available at least from WLS 10.3 and permits to easily monitor the deployment progress, so this could be an interesting alternative. If I manage to get a solution working smoothly, would you be interested in a pull request as well?
Thanks,
Jean