Step 15: Deploying the web application on WebLogic

WebLogic EAR file

When you install EBICS Server, the Axway Installer creates the EAR file as well as several sub-directories and files on your machine. For details, see Step 5: Checking the EBICS Server directory structure (WebLogic).

Modifying the WebLogic user

The default configuration of the WebLogic EAR file provided by Axway uses a user called "weblogic". This is the default administrator for the WebLogic administrator.

If you do not have a user called "weblogic" with the "Administrators" role, you must modify the file:
bankrechner.ear!/META-INF/weblogic-application.xml.

Change:

<listener-class>de.businesslogics.bankrechner.
weblogic.BankrechnerStartupListener</listener-class>

<run-as-principal-name>weblogic</run-as-principal-name>

</listener>

To:

<listener-class>de.businesslogics.bankrechner.
weblogic.BankrechnerStartupListener</listener-class>

<run-as-principal-name>AnyValidUser</run-as-principal-name>

</listener>

Make sure that the WebLogic user "AnyValidUser" is granted the global role "Admin". This is by default the case if the user belongs to the "Administrators" group.

Deployment methods

There are several ways to deploy the EAR file on WebLogic. This documentation describes:

Deployment using WebLogic auto-deploy

Deposit the bankrechner.ear file to the directory <bea_home>/user_projects/domains/<your_domain>/autodeploy directory

Deployment using the WebLogic Administration Console

  1. Open a session in the Administration Console.
  2. From the left menu, select Deployments.
  3. Click Lock & Edit.
  4. In the main window, click Install.
  5. Navigate to the directory <Installation Directory>/data/deploy and select the EAR file.
  6. Select Install as an Application.
  7. Enter a name for the application and set the Deployment model value to DD only.
  8. Select Finish.
  9. Click Activate Changes.

Related topics

Installing EBICS Server on WebLogic: general implementation procedure