diff options
Diffstat (limited to '')
-rw-r--r-- | odk/examples/java/ConverterServlet/web.xml | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/odk/examples/java/ConverterServlet/web.xml b/odk/examples/java/ConverterServlet/web.xml new file mode 100644 index 000000000..a0f36c7b2 --- /dev/null +++ b/odk/examples/java/ConverterServlet/web.xml @@ -0,0 +1,40 @@ +<?xml version="1.0" encoding="ISO-8859-1"?> +<!-- + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + * + * This file incorporates work covered by the following license notice: + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed + * with this work for additional information regarding copyright + * ownership. The ASF licenses this file to you under the Apache + * License, Version 2.0 (the "License"); you may not use this file + * except in compliance with the License. You may obtain a copy of + * the License at http://www.apache.org/licenses/LICENSE-2.0 . +--> + +<!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> + <display-name>Conversion</display-name> + <description> + Converter servlet demo of the SDK. + </description> + + <servlet> + <servlet-name>ConverterServlet</servlet-name> + <servlet-class>ConverterServlet</servlet-class> + </servlet> + + <servlet-mapping> + <servlet-name>ConverterServlet</servlet-name> + <url-pattern>/servlet/*</url-pattern> + </servlet-mapping> + +</web-app> |