annotate webapp/WEB-INF/web.xml @ 0:b6acfffd25cd
Initial commit of code. Not in a working state yet. This code is based on the JavaEndToEnd example described on Mathwork's MATLAB Application Deplyment (Web Example Guide for R2013b) - see this project's documentation for more details.
author |
luisf <luis.figueira@eecs.qmul.ac.uk> |
date |
Wed, 27 Nov 2013 11:10:43 +0000 |
parents |
|
children |
02c01c48cec1 |
rev |
line source |
luis@0
|
1 <?xml version="1.0" encoding="UTF-8"?>
|
luis@0
|
2 <web-app xmlns="http://java.sun.com/xml/ns/javaee"
|
luis@0
|
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
luis@0
|
4 xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
|
luis@0
|
5 http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
|
luis@0
|
6 version="2.5">
|
luis@0
|
7
|
luis@0
|
8 <servlet>
|
luis@0
|
9 <servlet-name>MagicSquareServlet</servlet-name>
|
luis@0
|
10 <servlet-class>MagicSquareServlet</servlet-class>
|
luis@0
|
11 </servlet>
|
luis@0
|
12 <servlet-mapping>
|
luis@0
|
13 <servlet-name>MagicSquareServlet</servlet-name>
|
luis@0
|
14 <url-pattern>/MagicSquare</url-pattern>
|
luis@0
|
15 </servlet-mapping>
|
luis@0
|
16
|
luis@0
|
17 <servlet>
|
luis@0
|
18 <servlet-name>WebFigures</servlet-name>
|
luis@0
|
19 <servlet-class>
|
luis@0
|
20 com.mathworks.toolbox.javabuilder.webfigures.WebFiguresServlet
|
luis@0
|
21 </servlet-class>
|
luis@0
|
22 </servlet>
|
luis@0
|
23 <servlet-mapping>
|
luis@0
|
24 <servlet-name>WebFigures</servlet-name>
|
luis@0
|
25 <url-pattern>/WebFigures/*</url-pattern>
|
luis@0
|
26 </servlet-mapping>
|
luis@0
|
27 </web-app>
|