I am using Apache CXF Webservice for developing WebServices .
I am writing a sepearte interface and a implementation class for every
Service .
This is applicationcontext.xml file used
*<?xml version="1.0" encoding="UTF-8"?>
<bean id="getData" class="com.tata.service.Bayer" />
<bean id="check" class="com.tata.service.CheckCalenderServiceImpl" />
<jaxws:endpoint id="tataImpl" implementor="#getData"
address="/MyWeb" />
<jaxws:endpoint id="checkImpl" implementor="#check"
address="/MyWeb" />
</beans>*
But this configuration is giving me a Error during tomcat startup on console
SEVERE: Error listenerStart
Please tell me how can i have this to work .
--
View this message in context:
http://cxf.547215.n5.nabble.com/CXF-Multiple-jaxws-endpoint-is-giving-SEVERE-Error-listenerStart-tp5086443p5086443.html
Sent from the cxf-user mailing list archive at Nabble.com.