Skip to content

Instantly share code, notes, and snippets.

@kwhinnery
Last active December 14, 2015 16:59
Show Gist options
  • Save kwhinnery/5119475 to your computer and use it in GitHub Desktop.
Save kwhinnery/5119475 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<web-app xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="2.5"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
<servlet>
<servlet-name>TwilioSandbox</servlet-name>
<servlet-class>com.twilio.TwilioSandboxServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>TwilioSandbox</servlet-name>
<url-pattern>/twiliosandbox</url-pattern>
</servlet-mapping>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
</welcome-file-list>
<servlet>
<servlet-name>SystemServiceServlet</servlet-name>
<servlet-class>com.google.api.server.spi.SystemServiceServlet</servlet-class>
<init-param>
<param-name>services</param-name>
<param-value />
</init-param>
</servlet>
<servlet-mapping>
<servlet-name>SystemServiceServlet</servlet-name>
<url-pattern>/_ah/spi/*</url-pattern>
</servlet-mapping>
</web-app>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment