-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
199 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
110 changes: 110 additions & 0 deletions
110
apps/updateserver/services/legacy/build/war-6.2/WEB-INF/web.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,110 @@ | ||
<?xml version="1.0" encoding="ISO-8859-1"?> | ||
<web-app xmlns="http://java.sun.com/xml/ns/javaee" | ||
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" | ||
metadata-complete="true" | ||
version="2.5"> | ||
|
||
<servlet> | ||
<servlet-name>CFMLServlet</servlet-name> | ||
<servlet-class>lucee.loader.servlet.CFMLServlet</servlet-class> | ||
|
||
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> | ||
<!-- to specify the location of the Lucee Server config and libraries, --> | ||
<!-- uncomment the init-param below. make sure that the param-value --> | ||
<!-- points to a valid folder, and that the process that runs Lucee has --> | ||
<!-- write permissions to that folder. leave commented for defaults. --> | ||
<!-- | ||
<init-param> | ||
<param-name>lucee-server-directory</param-name> | ||
<param-value>/var/Lucee/config/server/</param-value> | ||
<description>Lucee Server configuration directory (for Server-wide configurations, settings, and libraries)</description> | ||
</init-param> | ||
!--> | ||
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> | ||
<!-- to specify the location of the Web Contexts' config and libraries, --> | ||
<!-- uncomment the init-param below. make sure that the param-value --> | ||
<!-- points to a valid folder, and that the process that runs Lucee has --> | ||
<!-- write permissions to that folder. the {web-context-label} can be --> | ||
<!-- set in Lucee Server Admin homepage. leave commented for defaults. --> | ||
<!-- | ||
<init-param> | ||
<param-name>lucee-web-directory</param-name> | ||
<param-value>/var/Lucee/config/web/{web-context-label}/</param-value> | ||
<description>Lucee Web Directory (for Website-specific configurations, settings, and libraries)</description> | ||
</init-param> | ||
!--> | ||
<load-on-startup>2</load-on-startup> | ||
|
||
</servlet> | ||
|
||
|
||
<!-- ===================================================================== --> | ||
<!-- Lucee REST Servlet - handles Lucee's RESTful web services --> | ||
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> | ||
<servlet> | ||
<servlet-name>RESTServlet</servlet-name> | ||
<servlet-class>lucee.loader.servlet.RestServlet</servlet-class> | ||
<load-on-startup>3</load-on-startup> | ||
</servlet> | ||
|
||
<!-- ===================================================================== --> | ||
<!-- Lucee MessageBroker Servlet - Flex Gateway --> | ||
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> | ||
<!-- * ATTENTION - ATENCION - ACHTUNG - ATTENTION - ATENCION - ACHTUNG * --> | ||
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> | ||
<!-- messageBrokerId must be unique for each defintion of the MessageBroker--> | ||
<!-- Servlet. if you use the MessageBroker Servlet and define it in more --> | ||
<!-- than one xml file, you must uncomment the messageBrokerId init-param --> | ||
<!-- and set a different value in each definition. --> | ||
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> | ||
<!-- <servlet> | ||
<description>Lucee Servlet for Flex Gateway</description> | ||
<servlet-name>MessageBrokerServlet</servlet-name> | ||
<servlet-class>flex.messaging.MessageBrokerServlet</servlet-class> | ||
<init-param> | ||
<param-name>services.configuration.file</param-name> | ||
<param-value>/WEB-INF/flex/services-config.xml</param-value> | ||
</init-param> | ||
<init-param> | ||
<param-name>messageBrokerId</param-name> | ||
<param-value>_default_</param-value> | ||
</init-param> | ||
<load-on-startup>3</load-on-startup> | ||
</servlet> --> | ||
|
||
|
||
|
||
<servlet-mapping> | ||
<servlet-name>LuceeServlet</servlet-name> | ||
<url-pattern>*.lucee</url-pattern> | ||
<url-pattern>/index.lucee/*</url-pattern> | ||
</servlet-mapping> | ||
|
||
<servlet-mapping> | ||
<servlet-name>CFMLServlet</servlet-name> | ||
<url-pattern>*.cfc</url-pattern> | ||
<url-pattern>*.cfm</url-pattern> | ||
<url-pattern>*.cfml</url-pattern> | ||
<url-pattern>/index.cfc/*</url-pattern> | ||
<url-pattern>/index.cfm/*</url-pattern> | ||
<url-pattern>/index.cfml/*</url-pattern> | ||
</servlet-mapping> | ||
|
||
|
||
|
||
<servlet-mapping> | ||
<servlet-name>RESTServlet</servlet-name> | ||
<url-pattern>/rest/*</url-pattern> | ||
</servlet-mapping> | ||
|
||
|
||
<!-- default file to execute if directory is called with no file name, e.g. http://mysite.com/ !--> | ||
<welcome-file-list> | ||
<welcome-file>index.cfm</welcome-file> | ||
<welcome-file>index.lucee</welcome-file> | ||
<welcome-file>index.html</welcome-file> | ||
<welcome-file>index.htm</welcome-file> | ||
</welcome-file-list> | ||
|
||
</web-app> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters