Search code examples
javajdeveloper

JDeveloper Cannot run application due to error deploying to IntegratedWebLogicServer


I have a simple Fusion Web Application program that I could run my simple application on the weblogic server before, but now when I try to run the JSF page I get these errors:

Deployment cancelled.
----  Deployment incomplete  ----.
 Remote deployment failed (oracle.jdevimpl.deploy.common.Jsr88RemoteDeployer)
#### Cannot run application MyFirstApplication due to error deploying to IntegratedWebLogicServer.

How can I fix this problem?


Solution

  • the steps of running an application on weblogic server (or any other java server) consists of the following 4 steps:

    1. Compilation and building
    2. Starting the server
    3. Deploying the fusion web application
    4. Running the application

    Errors could happen in any of the steps, and would cause obstacles to move to the next steps. Your problem seems to be in the deployment phase, so the next step which is the running of the application is stopped from being executed.

    It is worth to mention that your savior is the logs. So you need to look into the deployment logs where it would clearly show the fault and the exception from not being deployed.