[jboss-cvs] JBossAS SVN: r88019 - branches/Branch_5_x/webservices/src/main/org/jboss/wsf/container/jboss50/deployer.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Apr 29 14:03:53 EDT 2009


Author: alessio.soldano at jboss.com
Date: 2009-04-29 14:03:53 -0400 (Wed, 29 Apr 2009)
New Revision: 88019

Modified:
   branches/Branch_5_x/webservices/src/main/org/jboss/wsf/container/jboss50/deployer/WSVirtualFileFilter.java
Log:
[JBWS-2619] Applying Daniel's fix


Modified: branches/Branch_5_x/webservices/src/main/org/jboss/wsf/container/jboss50/deployer/WSVirtualFileFilter.java
===================================================================
--- branches/Branch_5_x/webservices/src/main/org/jboss/wsf/container/jboss50/deployer/WSVirtualFileFilter.java	2009-04-29 17:38:58 UTC (rev 88018)
+++ branches/Branch_5_x/webservices/src/main/org/jboss/wsf/container/jboss50/deployer/WSVirtualFileFilter.java	2009-04-29 18:03:53 UTC (rev 88019)
@@ -75,7 +75,7 @@
          return false;
 
       final String fileName = file.getName();
-      return fileName.endsWith(".wsdl") || fileName.endsWith(".xsd");
+      return fileName.endsWith(".wsdl") || fileName.endsWith(".xsd") || fileName.endsWith(".xml");
    }
 
 }




More information about the jboss-cvs-commits mailing list