aboutsummaryrefslogtreecommitdiff
path: root/gae-interop-testing/gae-jdk7/src/main/webapp/WEB-INF/web.xml
diff options
context:
space:
mode:
Diffstat (limited to 'gae-interop-testing/gae-jdk7/src/main/webapp/WEB-INF/web.xml')
-rw-r--r--gae-interop-testing/gae-jdk7/src/main/webapp/WEB-INF/web.xml14
1 files changed, 14 insertions, 0 deletions
diff --git a/gae-interop-testing/gae-jdk7/src/main/webapp/WEB-INF/web.xml b/gae-interop-testing/gae-jdk7/src/main/webapp/WEB-INF/web.xml
new file mode 100644
index 000000000..35d6f8336
--- /dev/null
+++ b/gae-interop-testing/gae-jdk7/src/main/webapp/WEB-INF/web.xml
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="utf-8"?>
+<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee"
+ xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
+ xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
+ version="2.5">
+ <servlet>
+ <servlet-name>interoptest</servlet-name>
+ <servlet-class>io.grpc.testing.integration.OkHttpClientInteropServlet</servlet-class>
+ </servlet>
+ <servlet-mapping>
+ <servlet-name>interoptest</servlet-name>
+ <url-pattern>/</url-pattern>
+ </servlet-mapping>
+</web-app>