Re: cxf.xml

2011-08-10 Thread David G
to import all the below resource. On Wed Aug 10 06:09:44 2011, David G wrote: I had a jax-ws service working ok then started messing around with different loggers under the assumption this wouldn’t change core functionality. Now I try starting the server and get: ‘class path resource [META-INF

Re: cxf.xml

2011-08-10 Thread David G
at 10:21 AM, David G djg2...@live.co.uk wrote: I was using 2.2.3 but changing to 2.4.0 fixed the issue. Which files shouldn't I need to import? Still strange though - I left the imports in beans.xml but there still aren't any physical files anyway, are these being stepped over by CXF

Spring config on jaxws:endpoint

2011-08-09 Thread David G
Hi, Where do I do the dependency injection for my service implementation beans? For example if I configure in beans.xml and expose the service using jaxws can I use a bean in implementor instead of the class name? If I try: jaxws:endpoint id=orderProcessService implementor=orderP

Re: Spring config on jaxws:endpoint

2011-08-09 Thread David G
5:55 PM To: users@cxf.apache.org Subject: Re: Spring config on jaxws:endpoint It should read #beanId when referencing a spring bean, e.g. #orderP Den 9. aug. 2011 17:54 skrev David G djg2...@live.co.uk følgende: Hi, Where do I do the dependency injection for my service implementation beans

cxf.xml

2011-08-09 Thread David G
I had a jax-ws service working ok then started messing around with different loggers under the assumption this wouldn’t change core functionality. Now I try starting the server and get: ‘class path resource [META-INF/cxf/cxf.xml] cannot be opened because it does not exist’ My beans.xml file

Maven dependency for javax.jws.WebService

2011-08-03 Thread David G
Hi, I’m trying to create a bare-bones service from scratch using Maven but can’t seem to get the jax-ws API from the CXF dependencies. Without it I can’t add the @WebService dependency. What is the most appropriate CXF artifact to use to pick this up (transitively would be fine)? Here is what

Re: Maven dependency for javax.jws.WebService

2011-08-03 Thread David G
for javax.jws.WebService I don't think you want to include the CXF simple frontend dependency; my Java-first tutorial is using the other two dependencies along with the @WebService annotation: http://www.jroller.com/gmazza/entry/java_first_web_service Glen On 08/03/2011 11:44 AM, David G wrote: Hi