Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
Openfire
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
Openfire
Commits
23def937
Commit
23def937
authored
Nov 21, 2015
by
Dave Cridland
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #395 from sco0ter/webxml
Update web.xml schema namespaces to version 3.1 (Java EE 7)
parents
496a326c
ada3007b
Changes
13
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
53 additions
and
43 deletions
+53
-43
web-custom.xml
src/plugins/clientControl/src/web/WEB-INF/web-custom.xml
+4
-2
web-custom.xml
src/plugins/fastpath/src/web/WEB-INF/web-custom.xml
+4
-2
web-custom.xml
src/plugins/gojara/src/web/WEB-INF/web-custom.xml
+4
-2
web.xml
src/plugins/jmxweb/src/WEB-INF/web.xml
+3
-2
web-custom.xml
src/plugins/kraken/src/web/WEB-INF/web-custom.xml
+6
-5
web-custom.xml
src/plugins/monitoring/src/web/WEB-INF/web-custom.xml
+6
-4
web-custom.xml
src/plugins/mucservice/src/web/WEB-INF/web-custom.xml
+4
-2
web.xml
src/plugins/ofmeet/src/WEB-INF/web.xml
+3
-2
web-custom.xml
src/plugins/presence/src/web/WEB-INF/web-custom.xml
+4
-2
web-custom.xml
src/plugins/restAPI/src/web/WEB-INF/web-custom.xml
+4
-2
web-custom.xml
src/plugins/userservice/src/web/WEB-INF/web-custom.xml
+4
-2
web.xml
src/spank/WEB-INF/web.xml
+3
-3
web.xml
src/web/WEB-INF/web.xml
+4
-13
No files found.
src/plugins/clientControl/src/web/WEB-INF/web-custom.xml
View file @
23def937
<?xml version='1.0' encoding='ISO-8859-1'?>
<?xml version='1.0' encoding='ISO-8859-1'?>
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app
xmlns=
"http://xmlns.jcp.org/xml/ns/javaee"
<web-app>
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
version=
"3.1"
>
<!-- Servlets -->
<!-- Servlets -->
<servlet>
<servlet>
<servlet-name>
SparkDownload
</servlet-name>
<servlet-name>
SparkDownload
</servlet-name>
...
...
src/plugins/fastpath/src/web/WEB-INF/web-custom.xml
View file @
23def937
<?xml version='1.0' encoding='ISO-8859-1'?>
<?xml version='1.0' encoding='ISO-8859-1'?>
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app
xmlns=
"http://xmlns.jcp.org/xml/ns/javaee"
<web-app>
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
version=
"3.1"
>
<!-- Servlets -->
<!-- Servlets -->
<servlet>
<servlet>
<servlet-name>
ImageServlet
</servlet-name>
<servlet-name>
ImageServlet
</servlet-name>
...
...
src/plugins/gojara/src/web/WEB-INF/web-custom.xml
View file @
23def937
<?xml version='1.0' encoding='ISO-8859-1'?>
<?xml version='1.0' encoding='ISO-8859-1'?>
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app
xmlns=
"http://xmlns.jcp.org/xml/ns/javaee"
<web-app>
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
version=
"3.1"
>
<!-- Servlets -->
<!-- Servlets -->
<servlet>
<servlet>
<servlet-name>
stats
</servlet-name>
<servlet-name>
stats
</servlet-name>
...
...
src/plugins/jmxweb/src/WEB-INF/web.xml
View file @
23def937
...
@@ -15,9 +15,10 @@
...
@@ -15,9 +15,10 @@
~ limitations under the License.
~ limitations under the License.
-->
-->
<web-app
version=
"2.4"
xmlns=
"http://java.sun.com/xml/ns/j2
ee"
<web-app
xmlns=
"http://xmlns.jcp.org/xml/ns/java
ee"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
>
xsi:schemaLocation=
"http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
version=
"3.1"
>
<display-name>
JSON JMX Agent
</display-name>
<display-name>
JSON JMX Agent
</display-name>
...
...
src/plugins/kraken/src/web/WEB-INF/web-custom.xml
View file @
23def937
<?xml version="1.0" encoding="ISO-8859-1"?>
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app
xmlns=
"http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
<web-app>
xsi:schemaLocation=
"http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
version=
"3.1"
>
<!-- Servlets -->
<!-- Servlets -->
<servlet>
<servlet>
<servlet-name>
dwr-invoker
</servlet-name>
<display-name>
DWR Servlet
</display-name>
<description>
Direct Web Remoter Servlet
</description>
<description>
Direct Web Remoter Servlet
</description>
<display-name>
DWR Servlet
</display-name>
<servlet-name>
dwr-invoker
</servlet-name>
<servlet-class>
net.sf.kraken.web.GatewayDWR
</servlet-class>
<servlet-class>
net.sf.kraken.web.GatewayDWR
</servlet-class>
<init-param>
<init-param>
<param-name>
LogLevel
</param-name>
<param-name>
LogLevel
</param-name>
...
...
src/plugins/monitoring/src/web/WEB-INF/web-custom.xml
View file @
23def937
<?xml version='1.0' encoding='ISO-8859-1'?>
<?xml version='1.0' encoding='ISO-8859-1'?>
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app
xmlns=
"http://xmlns.jcp.org/xml/ns/javaee"
<web-app>
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
version=
"3.1"
>
<!-- Servlets -->
<!-- Servlets -->
<servlet>
<servlet>
<servlet-name>
GraphServlet
</servlet-name>
<servlet-name>
GraphServlet
</servlet-name>
...
@@ -8,9 +10,9 @@
...
@@ -8,9 +10,9 @@
</servlet>
</servlet>
<servlet>
<servlet>
<servlet-name>
dwr-invoker
</servlet-name>
<display-name>
DWR Servlet
</display-name>
<description>
Direct Web Remoter Servlet
</description>
<description>
Direct Web Remoter Servlet
</description>
<display-name>
DWR Servlet
</display-name>
<servlet-name>
dwr-invoker
</servlet-name>
<servlet-class>
org.jivesoftware.openfire.reporting.MonitoringDWR
</servlet-class>
<servlet-class>
org.jivesoftware.openfire.reporting.MonitoringDWR
</servlet-class>
<init-param>
<init-param>
<param-name>
logLevel
</param-name>
<param-name>
logLevel
</param-name>
...
...
src/plugins/mucservice/src/web/WEB-INF/web-custom.xml
View file @
23def937
<?xml version='1.0' encoding='ISO-8859-1'?>
<?xml version='1.0' encoding='ISO-8859-1'?>
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app
xmlns=
"http://xmlns.jcp.org/xml/ns/javaee"
<web-app>
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
version=
"3.1"
>
<!-- Servlets -->
<!-- Servlets -->
<servlet>
<servlet>
<servlet-name>
JerseyWrapper
</servlet-name>
<servlet-name>
JerseyWrapper
</servlet-name>
...
...
src/plugins/ofmeet/src/WEB-INF/web.xml
View file @
23def937
<?xml version="1.0" encoding="UTF-8"?>
<?xml version="1.0" encoding="UTF-8"?>
<web-app
version=
"2.4"
xmlns=
"http://java.sun.com/xml/ns/j2
ee"
<web-app
xmlns=
"http://xmlns.jcp.org/xml/ns/java
ee"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
>
xsi:schemaLocation=
"http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
version=
"3.1"
>
<servlet>
<servlet>
<servlet-name>
proxy
</servlet-name>
<servlet-name>
proxy
</servlet-name>
...
...
src/plugins/presence/src/web/WEB-INF/web-custom.xml
View file @
23def937
<?xml version='1.0' encoding='ISO-8859-1'?>
<?xml version='1.0' encoding='ISO-8859-1'?>
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app
xmlns=
"http://xmlns.jcp.org/xml/ns/javaee"
<web-app>
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
version=
"3.1"
>
<!-- Servlets -->
<!-- Servlets -->
<servlet>
<servlet>
<servlet-name>
PresenceStatusServlet
</servlet-name>
<servlet-name>
PresenceStatusServlet
</servlet-name>
...
...
src/plugins/restAPI/src/web/WEB-INF/web-custom.xml
View file @
23def937
<?xml version='1.0' encoding='ISO-8859-1'?>
<?xml version='1.0' encoding='ISO-8859-1'?>
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app
xmlns=
"http://xmlns.jcp.org/xml/ns/javaee"
<web-app>
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
version=
"3.1"
>
<!-- Servlets -->
<!-- Servlets -->
<servlet>
<servlet>
<servlet-name>
JerseyWrapper
</servlet-name>
<servlet-name>
JerseyWrapper
</servlet-name>
...
...
src/plugins/userservice/src/web/WEB-INF/web-custom.xml
View file @
23def937
<?xml version='1.0' encoding='ISO-8859-1'?>
<?xml version='1.0' encoding='ISO-8859-1'?>
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app
xmlns=
"http://xmlns.jcp.org/xml/ns/javaee"
<web-app>
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
version=
"3.1"
>
<!-- Servlets -->
<!-- Servlets -->
<servlet>
<servlet>
<servlet-name>
JerseyWrapper
</servlet-name>
<servlet-name>
JerseyWrapper
</servlet-name>
...
...
src/spank/WEB-INF/web.xml
View file @
23def937
<?xml version="1.0" encoding="UTF-8"?>
<?xml version="1.0" encoding="UTF-8"?>
<web-app
version=
"2.4"
<web-app
xmlns=
"http://xmlns.jcp.org/xml/ns/javaee"
xmlns=
"http://java.sun.com/xml/ns/j2ee"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
>
xsi:schemaLocation=
"http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
version=
"3.1"
>
</web-app>
</web-app>
src/web/WEB-INF/web.xml
View file @
23def937
<?xml version="1.0" encoding="ISO-8859-1"?>
<?xml version="1.0" encoding="ISO-8859-1"?>
<web-app
<web-app
xmlns=
"http://xmlns.jcp.org/xml/ns/javaee"
xmlns=
"http://java.sun.com/xml/ns/j2ee"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
xsi:schemaLocation=
"http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
version=
"3.1"
>
version=
"2.4"
>
<display-name>
Openfire
</display-name>
<display-name>
Openfire
</display-name>
<!-- OF-902 use HttpOnly for session cookie -->
<!-- OF-902 use HttpOnly for session cookie -->
...
@@ -162,13 +160,6 @@
...
@@ -162,13 +160,6 @@
<url-pattern>
/dwr/*
</url-pattern>
<url-pattern>
/dwr/*
</url-pattern>
</servlet-mapping>
</servlet-mapping>
<jsp-config>
<taglib>
<taglib-uri>
admin
</taglib-uri>
<taglib-location>
/WEB-INF/admin.tld
</taglib-location>
</taglib>
</jsp-config>
</web-app>
</web-app>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment