You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2010/09/02 23:25:20 UTC

svn commit: r992120 - /cxf/trunk/rt/transports/http/src/main/resources/META-INF/cxf/cxf-servlet.xml

Author: dkulp
Date: Thu Sep  2 21:25:19 2010
New Revision: 992120

URL: http://svn.apache.org/viewvc?rev=992120&view=rev
Log:
[CXF-2942] Fix type of collection for transportIds

Modified:
    cxf/trunk/rt/transports/http/src/main/resources/META-INF/cxf/cxf-servlet.xml

Modified: cxf/trunk/rt/transports/http/src/main/resources/META-INF/cxf/cxf-servlet.xml
URL: http://svn.apache.org/viewvc/cxf/trunk/rt/transports/http/src/main/resources/META-INF/cxf/cxf-servlet.xml?rev=992120&r1=992119&r2=992120&view=diff
==============================================================================
--- cxf/trunk/rt/transports/http/src/main/resources/META-INF/cxf/cxf-servlet.xml (original)
+++ cxf/trunk/rt/transports/http/src/main/resources/META-INF/cxf/cxf-servlet.xml Thu Sep  2 21:25:19 2010
@@ -29,12 +29,12 @@ http://www.springframework.org/schema/be
 	  id="org.apache.cxf.transport.servlet.ServletTransportFactory">
         <property name="bus" ref="cxf"/>
         <property name="transportIds">
-            <set>
+            <list>
                 <value>http://cxf.apache.org/transports/http</value>                
                 <value>http://cxf.apache.org/transports/http/configuration</value>                
                 <value>http://schemas.xmlsoap.org/wsdl/http</value>
                 <value>http://schemas.xmlsoap.org/wsdl/http/</value>
-            </set>
+            </list>
         </property>
     </bean>
 </beans>