cxf « grails « Java Enterprise Q&A





1. How do I enable MTOM on the server side for a Web Service published using Grails with CXF?    stackoverflow.com

Using Grails and CXF, I have published a small web service that looks like this

class TestService {

    static expose=['cxf']

    int pushData(int id, DataHandler data) {

 ...

2. Why Java Web Service Client (CXF, JAX-WS, JDK1.6) Exhibits Different Behavior in Grails app? A CLASSPATH fix?    stackoverflow.com

BACKGROUND: Current Grails application has to interact w/ a 'legacy' web service from a third party vendor - (systinet) Used the Apache CXF Wsdl2Java tool to generate complex types and service ...

3. Grails + WS Client throw an CXF exception    stackoverflow.com

I'm new in grails, and trying to build a backend for my webservice, the apps only access the webservice provided not access to databases directly.

package backend

import org.grails.plugins.wsclient.service.WebService

class BackendController {

   ...

4. grails cxf access soap headers    stackoverflow.com

is there a way to access soap headers within a cxf service class in grails? you know that you can access the whole soap message with interceptors, but i need header ...

5. WSClient soap client in grails/groovy    stackoverflow.com

I have a few problems with the cxf + WSClient in soap. I am writing a small tool in grails that must make SOAP calls to an existing service. WSClient (groovyws-0.5.3-20100521.062225-1.jar) seemed like ...

6. JBoss 6 migration: error deploying grails app    stackoverflow.com

I am attempting to deploy a war (a grails 1.3.7 app) to an jboss 6 which had been in a jboss 5 environment. The war is not dependent on jboss ...

7. wsdl2java CXF command line error about disableCNCheck option    stackoverflow.com

I'm using CXF wsdl2java command line tool to generate Java classes from a WSDL under https connection. Everything goes fine during generation, but when i call one of the services offered by ...