When I specify these three xml files, tomcat loads them: INFO: Loading XML bean definitions from ServletContext resource [/WEB-INF/beans.xml] Jan 16, 2008 1:45:42 PM org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefini tions INFO: Loading XML bean definitions from class path resource [META-INF/cxf/cxf.xml] Jan 16, 2008 1:45:42 PM org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefini tions INFO: Loading XML bean definitions from class path resource [META-INF/cxf/cxf-extension-soap.xml] Jan 16, 2008 1:45:42 PM org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefini tions INFO: Loading XML bean definitions from class path resource [META-INF/cxf/cxf-servlet.xml] Jan 16, 2008 1:45:42 PM org.springframework.context.support.AbstractApplicationContext obtainFreshBe anFactory
But if I don't import them in beans.xml. Tomcat loads all xml files! So if this is happening, why is it still not right? ( >> Caused by: java.net.MalformedURLException: no protocol: /hello_world ) INFO: Refreshing [EMAIL PROTECTED]: display name [org.apache.c [EMAIL PROTECTED]; startup date [Wed Jan 16 13:47:20 CST 2008]; root of c ontext hierarchy Jan 16, 2008 1:47:21 PM org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefini tions INFO: Loading XML bean definitions from class path resource [META-INF/cxf/cxf.xml] Jan 16, 2008 1:47:21 PM org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefini tions INFO: Loading XML bean definitions from class path resource [META-INF/cxf/cxf-extension-soap.xml] Jan 16, 2008 1:47:21 PM org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefini tions INFO: Loading XML bean definitions from class path resource [META-INF/cxf/cxf-extension-management.x ml] Jan 16, 2008 1:47:21 PM org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefini tions INFO: Loading XML bean definitions from class path resource [META-INF/cxf/cxf-extension-rm.xml] Jan 16, 2008 1:47:21 PM org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefini tions INFO: Loading XML bean definitions from class path resource [META-INF/cxf/cxf-extension-addr.xml] Jan 16, 2008 1:47:21 PM org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefini tions INFO: Loading XML bean definitions from class path resource [META-INF/cxf/cxf-extension-http-binding .xml] Jan 16, 2008 1:47:21 PM org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefini tions INFO: Loading XML bean definitions from class path resource [META-INF/cxf/cxf-extension-jms.xml] Jan 16, 2008 1:47:21 PM org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefini tions INFO: Loading XML bean definitions from class path resource [META-INF/cxf/cxf-extension-jaxws.xml] Jan 16, 2008 1:47:21 PM org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefini tions ................ -------------------------------- They are the spring description files of cxf components. <import resource="classpath:META-INF/cxf/cxf.xml" /> this is the cxf core component. <import resource="classpath:META-INF/cxf/cxf-extension-soap.xml" /> this is the soap component configuration file. <import resource="classpath:META-INF/cxf/cxf-servlet.xml" /> this is the cxf servlet transport component configuration file. You can find them from the cxf modules class path. Willem. -- View this message in context: http://www.nabble.com/Simple-Front-end-Aegis-binding-server-side-set-up-problem-tp14841711p14890738.html Sent from the cxf-user mailing list archive at Nabble.com.
