Re: Creating and publishing services from wsdl

2008-01-24 Thread Daniel Kulp
As Benson mentioned, take a look at the JaxWsServerFactoryBean. When you are using spring to configure things with jaxws:server, that is the object that Spring is manipulating. Thus, anything you can configure there should have appropriate options on the bean. The other option is to

Re: Creating and publishing services from wsdl

2008-01-23 Thread Rob Barrett
Basically I'm aiming at deploying many strongly typed services defined in the wsdl, but servicing each of them using a generic (existing) mechanism. If I declare each wsdl defined service in a jaxws:endpoint / then they load and publish successfully. I've subclassed the service factory to do

Re: Creating and publishing services from wsdl

2008-01-23 Thread Benson Margulies
Ideally I'd like to achieve all of this programatically - i.e. without having to knock together a big config file. All that spring config corresponds to plain old Java objects. Some of them are even specified by the JAX-WS specification :-) Beyond the stock JAXWS API, all of CXF can be

Re: Creating and publishing services from wsdl

2008-01-23 Thread Rob Barrett
that's what i'm looking for - got a url? On Jan 24, 2008 12:46 PM, Benson Margulies [EMAIL PROTECTED] wrote: Ideally I'd like to achieve all of this programatically - i.e. without having to knock together a big config file. All that spring config corresponds to plain old Java objects.

Re: Creating and publishing services from wsdl

2008-01-23 Thread Benson Margulies
On Thu, 2008-01-24 at 12:54 +1000, Rob Barrett wrote: that's what i'm looking for - got a url? See what the following page does for you. I'm not 100% sure that I'm following your thread, but if you could express it in Spring, you can do it here.

Re: Creating and publishing services from wsdl

2008-01-23 Thread Rob Barrett
thanks, will give that a go. On Jan 24, 2008 1:02 PM, Benson Margulies [EMAIL PROTECTED] wrote: On Thu, 2008-01-24 at 12:54 +1000, Rob Barrett wrote: that's what i'm looking for - got a url? See what the following page does for you. I'm not 100% sure that I'm following your thread, but if

Creating and publishing services from wsdl

2008-01-22 Thread Rob Barrett
Hi, I have a large set of existing WSDL describing ~200 business interfaces, and a set of classes that bind SOAP to the underlying services and vice-versa. I'm trying to publish these services through CXF, and so far have had mixed results My approach has been to subclass the CXFServlet, and on