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.