[jboss-cvs] JBossAS SVN: r75059 - trunk/webservices/src/main/org/jboss/wsf/container/jboss50/deployment/tomcat.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Jun 25 09:13:22 EDT 2008


Author: heiko.braun at jboss.com
Date: 2008-06-25 09:13:22 -0400 (Wed, 25 Jun 2008)
New Revision: 75059

Modified:
   trunk/webservices/src/main/org/jboss/wsf/container/jboss50/deployment/tomcat/WebMetaDataModifierImpl.java
Log:
Verify JSE endpoints by assignability only (prev. skipped *Servlet)

Modified: trunk/webservices/src/main/org/jboss/wsf/container/jboss50/deployment/tomcat/WebMetaDataModifierImpl.java
===================================================================
--- trunk/webservices/src/main/org/jboss/wsf/container/jboss50/deployment/tomcat/WebMetaDataModifierImpl.java	2008-06-25 13:08:03 UTC (rev 75058)
+++ trunk/webservices/src/main/org/jboss/wsf/container/jboss50/deployment/tomcat/WebMetaDataModifierImpl.java	2008-06-25 13:13:22 UTC (rev 75059)
@@ -162,11 +162,14 @@
                log.info("Ignore servlet: " + orgServletClassName);
                continue;
             }
+            /*
+            Legacy code: This shouldn't be used in recent AS 5 versions
+            
             else if (orgServletClassName.endsWith("Servlet"))
             {
                log.info("Ignore <servlet-class> that ends with 'Servlet': " + orgServletClassName);
                continue;
-            }
+            }*/
 
             servlet.setServletClass(servletClass);
 




More information about the jboss-cvs-commits mailing list