Skip to content

Commit

Permalink
fix project name
Browse files Browse the repository at this point in the history
  • Loading branch information
devwebcl committed Oct 9, 2019
1 parent 6fae4e8 commit 83819bb
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 29 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# wls_contraption
Different WebLogic Server Tools
Different WebLogic Server Tools (and other web containers)

Bunch of tools to help WLS admin, debugging, etc.

Expand Down
2 changes: 1 addition & 1 deletion src/main/webapp/WEB-INF/web.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" version="3.0">
<display-name>wls-logs-retrieval</display-name>
<display-name>wls-contraption</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
Expand Down
57 changes: 30 additions & 27 deletions src/main/webapp/WEB-INF/weblogic.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<wls:weblogic-web-app xmlns:wls="http://xmlns.oracle.com/weblogic/weblogic-web-app" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd http://xmlns.oracle.com/weblogic/weblogic-web-app http://xmlns.oracle.com/weblogic/weblogic-web-app/1.3/weblogic-web-app.xsd">
<wls:weblogic-web-app xmlns:wls="http://xmlns.oracle.com/weblogic/weblogic-web-app"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd
http://xmlns.oracle.com/weblogic/weblogic-web-app http://xmlns.oracle.com/weblogic/weblogic-web-app/1.3/weblogic-web-app.xsd">
<wls:weblogic-version>10.3.6</wls:weblogic-version>
<wls:context-root>logs_retrieval</wls:context-root>
<wls:context-root>wls-contraption</wls:context-root>

<!--
Expand All @@ -24,35 +27,35 @@ The default value is false (does not generate a directory). Values are true or f
https://docs.oracle.com/cd/E28280_01/web.1111/e13712/weblogic_xml.htm#WBAPP596
-->
<wls:container-descriptor>
<wls:index-directory-enabled>true</wls:index-directory-enabled>
</wls:container-descriptor>
<wls:container-descriptor>
<wls:index-directory-enabled>true</wls:index-directory-enabled>
</wls:container-descriptor>

<!-- wls:virtual-directory-mapping>
<wls:local-path>/u04</wls:local-path>
<wls:url-pattern>/servers/logs/*</wls:url-pattern>
</wls:virtual-directory-mapping -->
<!-- wls:virtual-directory-mapping>
<wls:local-path>/u04</wls:local-path>
<wls:url-pattern>/servers/logs/*</wls:url-pattern>
</wls:virtual-directory-mapping -->

<!-- wls:virtual-directory-mapping>
<wls:local-path>/u01/domains1036/MYDOMAIN/</wls:local-path>
<wls:url-pattern>/logs/*</wls:url-pattern>
</wls:virtual-directory-mapping -->
<!-- wls:virtual-directory-mapping>
<wls:local-path>/u01/domains1036/MYDOMAIN/</wls:local-path>
<wls:url-pattern>/logs/*</wls:url-pattern>
</wls:virtual-directory-mapping -->

<!-- depending on OS we must use : "/" or "c:" -->
<wls:virtual-directory-mapping>
<!-- wls:local-path>c:/</wls:local-path -->
<wls:local-path>/</wls:local-path>
<wls:url-pattern>/u04/*</wls:url-pattern>
</wls:virtual-directory-mapping>


<wls:jsp-descriptor>
<wls:page-check-seconds>0</wls:page-check-seconds>
</wls:jsp-descriptor>
<wls:container-descriptor>
<wls:servlet-reload-check-secs>0</wls:servlet-reload-check-secs>
<wls:resource-reload-check-secs>0</wls:resource-reload-check-secs>
</wls:container-descriptor>
<wls:virtual-directory-mapping>
<!-- wls:local-path>c:/</wls:local-path -->
<wls:local-path>/</wls:local-path>
<wls:url-pattern>/u04/*</wls:url-pattern>
</wls:virtual-directory-mapping>


<wls:jsp-descriptor>
<wls:page-check-seconds>0</wls:page-check-seconds>
</wls:jsp-descriptor>
<wls:container-descriptor>
<wls:servlet-reload-check-secs>0</wls:servlet-reload-check-secs>
<wls:resource-reload-check-secs>0</wls:resource-reload-check-secs>
</wls:container-descriptor>

</wls:weblogic-web-app>

Expand Down

0 comments on commit 83819bb

Please sign in to comment.