Dynamic Client/Server Side Configuration using API for Java First Spring WS

2008-04-03 Thread Arul Dhesiaseelan
Hello! I am developing a Java first spring based CXF services. Is there a way to dynamically create services and clients at runtime rather using service-beans.xml and client-beans.xml? I am embedding Jetty as my server which will host my CXF services. Can someone on this group suggest me the

Re: Dynamic Client/Server Side Configuration using API for Java First Spring WS

2008-04-03 Thread Daniel Kulp
On Thursday 03 April 2008, Arul Dhesiaseelan wrote: > Hello! > > I am developing a Java first spring based CXF services. Is there a way > to dynamically create services and clients at runtime rather using > service-beans.xml and client-beans.xml? > I am embedding Jetty as my server which will host

Re: Dynamic Client/Server Side Configuration using API for Java First Spring WS

2008-04-03 Thread Arul Dhesiaseelan
Thanks Dan. Client worked just fine with your suggestion. Here is my service bean configuration. How do I dynamically create an endpoint shown in service-beans.xml? I am embedding jetty to deploy this endpoint. http://www.springframework.org/schema/beans"; xmlns:xsi="http://www.w3.org/20

Re: Dynamic Client/Server Side Configuration using API for Java First Spring WS

2008-04-03 Thread Daniel Kulp
The jaxws:endpoint element is just configuring the actual CXF implementation of the jaxws Endpoint interface: org.apache.cxf.jaxws.EndpointImpl Dan On Thursday 03 April 2008, Arul Dhesiaseelan wrote: > Thanks Dan. Client worked just fine with your suggestion. > > Here is my service bean confi

Re: Dynamic Client/Server Side Configuration using API for Java First Spring WS

2008-04-04 Thread Arul Dhesiaseelan
Dan, I was able to create the service dynamically. I have another related question. Is it possible to create one instance of JaxWsProxyFactoryBean server and then add multiple endpoints to this instance dynamically? In essence, I would like to run multiple instances of the same web service

Re: Dynamic Client/Server Side Configuration using API for Java First Spring WS

2008-04-07 Thread Arul Dhesiaseelan
Can some one help me out? Is there an EndPointRegistry in CXF where I can dynamically register/unregister JAX-WS endpoints running within the same server? Or, is there any other way to achieve this functionality using JaxWsProxyFactoryBean? I appreciate your directions. Thanks! Arul Arul D