Using JDeveloper 12.2.1.4.
Unable to deploy a .ear file using a deployment plan xml file. Deployment without a plan always fails. I've attempted to deploy to the Integrated Weblogic Server and to Managed Servers in our private Weblogic Domain. I get one of two “Deployment Incomplete” errors:
[11:50:28 AM] Deploying 3 profiles...
[11:50:29 AM] Wrote Web Application Module to C:\biw_code2\DigitalSteel\SPDConsole\release_AIFScaleout_12.2.1.4\ViewController\deploy\StructuredProdDesign_ViewController_webapp.war
[11:50:29 AM] Wrote Enterprise Application Module to C:\biw_code2\DigitalSteel\SPDConsole\release_AIFScaleout_12.2.1.4\deploy\SPDB4.ear
[11:51:58 AM] Deploying Application...
[11:51:58 AM] Deployment cancelled.
[11:51:58 AM] ---- Deployment incomplete ----.
[11:51:58 AM] null
OR
[11:48:16 AM] Deployment cancelled.
[11:48:16 AM] ---- Deployment incomplete ----.
[11:48:16 AM] unable to load BindingTypeName[java.lang.String;t=pathType@http://java.sun.com/xml/ns/j2ee]
If I deploy using weblogic.Deployer with a command-line similar to the one below, it works:
java -classpath %CLASSPATH% weblogic.Deployer -deploy -debug -verbose -stage -adminurl %ADMIN_URL% -username %U% -password %P% -name %APP_NAME% -targets %TARGETS% -upload -plan %PLAN_FILE% -source %EAR_FILE%
Is there a way to debug the JDeveloper deployer or control its behavior?
Is anyone aware of a fix for this issue? Deploying w/ JDeveloper tools is a convenience that I've always enjoyed and would like to keep using it.
Thanks in advance!
-Eric
BTW, the appliccation is an ADF Web App.