Instant ASP (iASP) is a portable Active Server framework that allows deploying Active Server Pages (ASP) on any Java technology-enabled web server. This package contains the developer's version of iASP, which may be fully licensed into the Enterprise iASP Edition.
26 lines
1.7 KiB
XML
26 lines
1.7 KiB
XML
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
<!DOCTYPE web-app
|
|
PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN"
|
|
"http://java.sun.com/j2ee/dtds/web-app_2_2.dtd">
|
|
|
|
<!-- $NetBSD: web.xml,v 1.1.1.1 2003/01/01 07:03:42 jlam Exp $
|
|
-->
|
|
|
|
<web-app>
|
|
<servlet>
|
|
<servlet-name>
|
|
Dispatcher.DispatcherServlet
|
|
</servlet-name>
|
|
<servlet-class>
|
|
Dispatcher.DispatcherServlet
|
|
</servlet-class>
|
|
</servlet>
|
|
<servlet-mapping>
|
|
<servlet-name>
|
|
Dispatcher.DispatcherServlet
|
|
</servlet-name>
|
|
<url-pattern>
|
|
*.asp
|
|
</url-pattern>
|
|
</servlet-mapping>
|
|
</web-app>
|