1<?xml version="1.0" encoding="utf-8"?> 2<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" 3 xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" 4 xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" 5 version="2.5"> 6 <servlet> 7 <servlet-name>interoptest</servlet-name> 8 <servlet-class>io.grpc.testing.integration.NettyClientInteropServlet</servlet-class> 9 </servlet> 10 <servlet> 11 <servlet-name>longlivedchannel</servlet-name> 12 <servlet-class>io.grpc.testing.integration.LongLivedChannel</servlet-class> 13 </servlet> 14 <servlet-mapping> 15 <servlet-name>interoptest</servlet-name> 16 <url-pattern>/</url-pattern> 17 </servlet-mapping> 18 <servlet-mapping> 19 <servlet-name>longlivedchannel</servlet-name> 20 <url-pattern>/long_lived_channel</url-pattern> 21 </servlet-mapping> 22</web-app> 23