Re: jaxws:endpoint wsdlLocation attribute -- form for class path reference?

2007-09-13 Thread Sergey Beryozkin
, September 13, 2007 12:19 PM Subject: Re: jaxws:endpoint wsdlLocation attribute -- form for class path reference? I have CXFServlet loading WEB-INF/wsdl/hello.wsdl just fine. not sure why it didn't work for me yesterday, possibly because I was using an absolute /WEB-INF/wsdl/hello.wsdl form... So

RE: jaxws:endpoint wsdlLocation attribute -- form for class path reference?

2007-09-12 Thread Sergey Beryozkin
: jaxws:endpoint wsdlLocation attribute -- form for class path reference? Jiang, Ning \(Willem\) [EMAIL PROTECTED] writes: I just try the latest kit's (build with latest trunk) helloworld sample with the wsdlLocation=WEB-INF/wsdl/hello_world.wsdl. It is workable. That's good to hear

Re: jaxws:endpoint wsdlLocation attribute -- form for class path reference?

2007-05-05 Thread Steven E. Harris
[WARNING: Much rambling follows.] Daniel Kulp [EMAIL PROTECTED] writes: Basically, in the servlet, we need to have some objects that the Servlet provides set into the bus that spring creates. Those objects aren't created by any spring xml or anything like that. A bus is first created by

RE: jaxws:endpoint wsdlLocation attribute -- form for class path reference?

2007-05-03 Thread Christopher Moesel
(assuming it works!). -Chris -Original Message- From: Steven E. Harris [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 02, 2007 11:32 PM To: cxf-user@incubator.apache.org Subject: Re: jaxws:endpoint wsdlLocation attribute -- form for class path reference? Jiang, Ning \(Willem\) [EMAIL

Re: jaxws:endpoint wsdlLocation attribute -- form for class path reference?

2007-05-03 Thread Daniel Kulp
Steven, In a servlet, the contents of WEB-INF aren't available on the classpath (except for WEB-INF/classes). They are grabbed via the ServletContext. If you look at the CXF servlet code, we create a spring bus using the normal configs, the servlet then adds a ResourceResolver for the

Re: jaxws:endpoint wsdlLocation attribute -- form for class path reference?

2007-05-03 Thread Daniel Kulp
On Thursday 03 May 2007 12:45, Steven E. Harris wrote: If you know of a way to clean that up a bit, I'd love to hear it. First I'll need to understand this phase distinction better. First point: I am by no means a spring expert. Quite the opposite. I've avoided spring as much as possible.