Re: other spring cxf resources ?

2007-11-04 Thread Christian Schneider
Hi Mohammad, I had a similar problem when I wanted to provide fail safe operation and load balancing to servers that do not run in a cluster. My solution is simply running the services with soap/jms. The JMS Server (e.g. ActiveMQ) has to run on two servers to provide fail safe operation. It

RE: ClientFactoryBean AbstractMethodError

2007-11-04 Thread Liu, Jervis
I probabaly should remove JAX-WS style client codes from restful_http_binding demo, as it constantly causes confusions. In theory, JAX-WS style client APIs should work with RESTful services that published using CXF HTTP binding, as this is symmetric to what the server side has to do to marshal/u

RE: Gzip encoding

2007-11-04 Thread Liu, Jervis
Hi Shaw, you can configure your client side interceptors using feature. An example can be found from dispatch system test: \trunk\systests\src\test\java\org\apache\cxf\systest\dispatch\TestDispatchFeature.java and client-config.xml. Cheers, Jervis > -Original Message- > From: Daniel Ku

ClientFactoryBean AbstractMethodError

2007-11-04 Thread Todd Orr
I have been trying to get a REST service up and running. I believe the server is up. However, creating the client is problematic. Using the following code borrowed from the bundled rest sample: JaxWsProxyFactoryBean sf = new JaxWsProxyFactoryBean(); sf.setServiceClass(MyServiceInterface.class); /

Mulitple protocols on one IMPL?

2007-11-04 Thread Patrick Mulligan
Hi, Is it possible to have multiple protocols on a single running instance of an IMPL in CXF? Or do I need to start two seperate instances? For example, ServiceA running soap/http and ServiceA running JMS. This questions applies to standalone server and spring deployments.

Re: other spring cxf resources ?

2007-11-04 Thread Mohammad Shamsi
Hi Glen, Sorry, my application is not really a distributed app. i just run it on 9 servers, all 9 server connect to one database, but they are work standalone. and they don't know about each other. for some reason i wan't to collect some info from each app server and show them together in one c

Re: other spring cxf resources ?

2007-11-04 Thread Glen Mazza
Do you have a WSDL? Just follow the links I gave. That fact that you have 9 servers or 900 shouldn't matter--the URL in the WSDL would be the same for all the servers your app is distributed on (just as it is the same for your web application as a whole, correct?) Glen Am Sonntag, den 04.11.200

other spring cxf resources ?

2007-11-04 Thread Mohammad Shamsi
Hi All, I have a spring based Java EE application, this application destirbuted on 9 servers, i want to add a Web Service to this application, i want now how to call these 9 servers web service with a client ? i read spring cxf sample, client part of this sample in beans.xml ar

Re: cxf servlet beside app servlet

2007-11-04 Thread Mohammad Shamsi
Hi Glen Thanks, its work. On 11/4/07, Glen Mazza <[EMAIL PROTECTED]> wrote: > > Am Sonntag, den 04.11.2007, 14:57 +0330 schrieb Mohammad Shamsi: > > hi all, > > > > i want to develop some webservice in my web application. i have 2 > servlet > > configured in my web.xml file (Strurts Actoin Servl

Re: cxf servlet beside app servlet

2007-11-04 Thread Glen Mazza
Am Sonntag, den 04.11.2007, 14:57 +0330 schrieb Mohammad Shamsi: > hi all, > > i want to develop some webservice in my web application. i have 2 servlet > configured in my web.xml file (Strurts Actoin Servlet, and a Ajax Servlet) > > in servlet mappings, i have : > > > ajax-control

cxf servlet beside app servlet

2007-11-04 Thread Mohammad Shamsi
hi all, i want to develop some webservice in my web application. i have 2 servlet configured in my web.xml file (Strurts Actoin Servlet, and a Ajax Servlet) in servlet mappings, i have : ajax-controller *.jsh struts-controller *.sh i want t