You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@shindig.apache.org by jo...@apache.org on 2011/03/04 18:59:50 UTC

svn commit: r1078078 - /shindig/trunk/java/server/src/main/webapp/WEB-INF/web.xml

Author: johnh
Date: Fri Mar  4 17:59:49 2011
New Revision: 1078078

URL: http://svn.apache.org/viewvc?rev=1078078&view=rev
Log:
Change xpc servlet-path from xpc.swf to /xpc, as evidently "xpc.swf" is invalid according to Tomcat.


Modified:
    shindig/trunk/java/server/src/main/webapp/WEB-INF/web.xml

Modified: shindig/trunk/java/server/src/main/webapp/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/shindig/trunk/java/server/src/main/webapp/WEB-INF/web.xml?rev=1078078&r1=1078077&r2=1078078&view=diff
==============================================================================
--- shindig/trunk/java/server/src/main/webapp/WEB-INF/web.xml (original)
+++ shindig/trunk/java/server/src/main/webapp/WEB-INF/web.xml Fri Mar  4 17:59:49 2011
@@ -295,6 +295,6 @@
 
   <servlet-mapping>
     <servlet-name>rpcSwf</servlet-name>
-    <url-pattern>xpc.swf</url-pattern>
+    <url-pattern>/xpc</url-pattern>
   </servlet-mapping>
 </web-app>