On Monday, December 19, 2011 7:29:01 AM [email protected] wrote: > 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 .
Well, you cannot have two services on the same addressed. That definitely won't work. If you use a unique address for each, then that should be fine. -- Daniel Kulp [email protected] - http://dankulp.com/blog Talend Community Coder - http://coders.talend.com
