Jagtap
Jagtap

Reputation: 11

Can we deploy a directory application on WebLogic?

We have an old application running on a WebLogic 8.1.5.0.

In this version, we can see that the application has been configured as a directory (which has classes, css, images, htmls), but No WAR, JAR or EAR found for this app.

PFB the extract from config.xml

Application Name="abc" Path="/wls_domains/flret/admin/applications" StagingMode="nostage" TwoPhase="true">

    <WebAppComponent Name="abc" Targets="admin" URI="abc"/>

Now, we need to migrate this application to WebLogic 10.3.6.0.

New Weblogic is not allowing us to deploy an application other than WAR, EAR or JAR.

Also, config.xml structure is completely different for new weblogic.

<name>XYZ</name>

<target>XYZ_cluster</target>

<module-type>war</module-type>

<source-path>servers/admin/upload/XYZ.war</source-path>

<security-dd-model>DDOnly</security-dd-model>

Is it something related to weblogic versions and feature available to deploy a directory?

Can someone plz suggest can I complete this deployment or any other way to do this.

Thanks in advance.

Upvotes: 0

Views: 1200

Answers (1)

Trent Bartlem
Trent Bartlem

Reputation: 2253

Looks like you have an 'Exploded Archive' app, which modern versions of weblogic do not support. You need to upgrade to a modern format, or put it directly on the filesystem of the app server.

(see: How can I deploy an exploded web app through WebLogic 11g administrative console?)

Upvotes: 0

Related Questions