Tagged Questions

(quoting from Apache project web site): Apache CXF is an open source services framework. CXF helps you build and develop services using frontend programming APIs, like JAX-WS and JAX-RS. These services can speak a variety of protocols such as SOAP, XML/HTTP, RESTful HTTP, or CORBA and work over a variety of transports such as HTTP, JMS or JBI.

learn more… | top users | synonyms (1)

53
votes
1answer
2k views

How to route Rest request from a local service to a remote one using Camel

I am trying to route a rest request from a cxf rest service to another. I have had a look at http://camel.apache.org/cxfrs.html which helped understand part of the process. I have a classCastException ...
35
votes
2answers
17k views

Difference between Apache CXF and Axis

What are the advantages of using Apache CXF over Apache Axis and vice versa?
21
votes
6answers
11k views

Which framework is better CXF or Spring-WS?

I am in the process of researching/comparing CXF and Spring-WS for web services? I need to function both as a provider and a consumer of WS. In a nutshell, I have been told that Spring-WS is more ...
20
votes
3answers
745 views

How to reduce memory size of Apache CXF client stub objects?

My web service client application uses Apache CXF to generate client stubs for talking to several web services. The generated CXF web service stub objects have quite a large memory footprint (10 - 15 ...
19
votes
2answers
807 views

How to merge common parts of WSDL and XSD from different services?

I have to interact with a set of web-services that each come with their own WSDL and XSD. The XSD are sometimes merged in a single file sometimes spread along multiple files (20-30). However, from ...
15
votes
4answers
5k views

Java REST implementation: Jersey vs CXF

What do you think is the advantages/disadvantages between this two libraries? Which of these two are best suited for production environment? By the way I will be using JSON instead of XML. I also ...
15
votes
10answers
9k views

Can a web service return a stream?

I've been writing a little application that will let people upload & download files to me. I've added a web service to this applciation to provide the upload/download functionality that way but ...
8
votes
1answer
3k views

How to use CXF, JAX-RS and HTTP Caching

The CXF documentation mentions caching as Advanced HTTP: CXF JAXRS provides support for a number of advanced HTTP features by handling If-Match, If-Modified-Since and ETags headers. JAXRS Request ...
7
votes
1answer
2k views

Apache CXF RS Extensions issue in 2.4.0

I'm using Apache CXF version 2.4.0. I'm trying to create a Restful service. The below example works in 2.3.4 but does not work in 2.4.0. What should I do different in beans config file? When I ...
7
votes
3answers
308 views

Webservice Security and Windows Certificates

I want to sign webservice requests using Apache CXF and WSS4J. As far as I know, I would need a JKS store containing the certificate I want to use for signing. There's the requirement to be able to ...
7
votes
7answers
5k views

How can I extend Java code generated by JAXB, CXF or Hibernate tools?

With generated Java source code, like code generated with Hibernate tools code generated with JAXB schema binding (xjc) code generated with WDSL2Java (cxf) all generated classes are "value object" ...
6
votes
1answer
209 views

Problem with jaxb unmarshal collection

I have this problem trying to unmarshall json from rest webservice (cxf). I'm using JAXB and EclipseLink. The entity is mapped like that: @Entity @Table(name = "service_pkg_service", schema = "MD") ...
6
votes
0answers
392 views

Using Spring Security on a JAX-RS bundle in Karaf

I have an OSGi bundle that uses JAX-RS to handle some REST services. This bundle is running in Karaf with Apache CXF. I need to apply basic http authentication to certain path/method combinations. ...
6
votes
1answer
4k views

Apache CXF: How to secure JAX-RS web service with basic authentication

I have a Spring application that publishes some RESTful web services using Apache CXF (using jax-rs). I would like to secure access to those services using HTTP basic authentication. The username and ...
6
votes
1answer
2k views

Add Response Header to JAX-RS Webservice

I am trying add some response headers to some of my webservice calls. I wrote my webservice using CXF 2.1.2 and JAX-RS. I need to return an object and I also want to add some headers to the ...
6
votes
6answers
5k views

What can I use to create a REST client in Java?

If I want to use Java to create a REST client, what should I use? Can i use CXF?
5
votes
0answers
188 views

Marshalling enum attributes into XML using JAXB and JAXWS Annotations

Let's say we have the following Java 1.5 enumeration: import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; ...
5
votes
2answers
326 views

CXF Restful service complex object unmarshalling does not work

I am new at restful services, and had a relatively good start, until I decided to play with some complex objects. The problem I am hitting is about unmarshalling an object coming to the server ...
5
votes
3answers
313 views

CXF and Google Guice using JAX-RS + JAX-WS

I would like to integrate CXF with Google Guice. I am already using Guice in my project and I want to avoid adding extra dependencies. CXF was my choice because one of the requirements is to be able ...
5
votes
2answers
1k views

What's wrong with my Apache CXF client?

This is part of my pom.xml: <dependency> <groupId>org.apache.cxf</groupId> <artifactId>cxf-rt-frontend-jaxws</artifactId> ...
5
votes
2answers
921 views

JAXB, CXF: There's no ObjectFactory with an @XmlElementDecl for the element … with

I'm creating a WSDL first webservice with JAXB and CXF. I do not own the WSDL, so I cannot make changes to it. I'm using ftp://ftp.ihe.net/TF_Implementation_Material/ITI/wsdl/PIXManager.wsdl as my ...
5
votes
2answers
2k views

JAXB generated classes serializable with JAX-WS binding

Having JAXB-RI and CXF. WSDL first. I want a generated class of mine to implement Serializable. I now have the following binding xml, which works (the SEI class name gets changed) <jaxws:bindings ...
5
votes
3answers
2k views

How to pick CXF over Metro on Glassfish

I'm having the following problem (reported there by someone else) when running my enterprise application under Glassfish. Under Jetty it works fine. javax/xml/ws/spi/Provider mentions creating a ...
5
votes
3answers
2k views

How can I cache the marshalled SOAP XML generated by Apache CXF for a particular Java Object to improve performance?

In my application, we have a webservice method called getFoo() which returns a Foo object. The getFoo() method is called several hundred times a second. The Foo object is Marshalled from our Java ...
5
votes
4answers
5k views

CXF without Spring

Is it possible to use CXF with Tomcat and without Spring?
5
votes
6answers
4k views

What is the best way to expose a WCF service so that it can be easily consumed from Java/CXF?

We've written a WCF service to be used by a Java shop, who is using CXF to generate the adapters. We're not that familiar with Java, but have exposed the service using basicHttpBinding, SSL, and ...
4
votes
3answers
74 views

Integer to int using jaxb

I have a weird situation where the getter in a class returns a primitive int type, and the setter takes a Integer class. When jaxb unmarshals an element to this class, it cannot find the setter it is ...
4
votes
1answer
1k views

CXF: No message body writer found for class - automatically mapping non-simple resources

I am using the CXF rest client which works well for simple data types (eg: Strings, ints). However, when I attempt to use custom Objects I get this: Exception in thread "main" ...
4
votes
1answer
417 views

How to access Servlet Session in CXF Interceptor?

I have an "in" CXF Interceptor, I want to access the the Servlet Session in its handleMessage() method. My Interceptor extends AbstractPhaseInterceptor. I want to access the session to store some ...
4
votes
1answer
368 views

Apache CXF: adding custom documentation in the WSDL?

I'm currently learning Apache CXF. When CXF is generating a WSDL file from a Pojo, is there a way (a java annotation ?) to add a custom documentation to the WSDL file ? to describe a service or a ...
4
votes
2answers
2k views

How do I prevent JAXBElement<String> from being generated in a CXF Web Service client?

I'm trying to create a web service client using CXF to consume a WCF web service. When I use wsdl2java it generates objects with JAXBElement types instead of String. I read about using a jaxb ...
4
votes
3answers
1k views

Within CXF, why use any other binding than JAXB? (MTOM attachments, Aegis, XMLBeans,…)

I have been playing around with Apache CXF, in particular the various data bindings it supports: JAXB (the default), MTOM, Aegis and XMLBeans. Since all of these are supported, I suppose each has its ...
4
votes
1answer
609 views

Advantage of RESTEasy over Apache CXF?

I have Restful web-service implemented using Apache CXF. Since I am going to use JBoss for deployment, I am thinking of moving to RESTEasy as it provides better JBoss integration. What are the ...
4
votes
1answer
325 views

how to apply XML signature on outgoing SOAP messages

I have generated stubs and bindings using cxf codegen. Everything runs fine however the server still rejects the message because of security issues. Basically I have 3 layers to take care all of ...
4
votes
3answers
558 views

Web-Service: JAX-WS, CXF, WSDL… What's that all about?

Sorry fot his newbie question. But I really need a start on this one. I want to access a webservice in my JEE project. This webservice offers a WSDL file. So I understand I can use this to build Java ...
4
votes
1answer
289 views

EodData wsdl java connection

I am stuck trying to figure out how to initiate a WSDL connection with EodData.com the wsdl address is http://ws.eoddata.com/data.asmx?wsdl I am using CXF to create a client connection: QName ...
4
votes
4answers
4k views

How do I consume a web service protected with HTTP basic authentication using the CXF framework?

I tried to get it to work using the CXF User Guide, but I've had no luck. I'm trying to call the web service using java code.
4
votes
1answer
7k views

How do you use TLS/SSL Http Authentication with a CXF client to a web service?

I'm trying to access a web service secured by a certificate. The security is setup on IIS and the web service is behind it. I don't think WS-SECURITY will do this type of authentication. Is there any ...
4
votes
1answer
681 views

Detecting Client Disconnects in Web Services

I'm using the Apache CXF Web Services stack. When a client times out or disconnects from the server before the operation is complete, the server keeps running the operation until it is complete. I ...
3
votes
2answers
52 views

Apache CXF + Spring: Simple Certificate Authentication

I've started learning the Apache CXF with Spring. First of all, I've created a simple client/server model: see here Now I'm trying to use a simple certificate authentication. So that I've changed the ...
3
votes
1answer
42 views

Text length limit in logback logging

We are logging the application SOAP requests to the interfaces using the logback.xml configuration file. The SOAP requests are itself generated with the framework Apache CXF. The configuration is ...
3
votes
0answers
115 views

SOAP response wrongly deserializing as null in CXF + Simple frontend + Aegis databinding

I'm writting a client for a SOAP Web Service. I'm using the library CXF. With the Simple frontend. And the Aegis databinding. The server is providing a Java interface (named MediaService) for the web ...
3
votes
2answers
84 views

Using WS-Security to authenticate when I don't know the password

I'm using WSS4JInInterceptor to try to authenticate my client. I have been able to create a trivial example. However, I have a problem. In my application, I use the supplied user name and password ...
3
votes
1answer
203 views

JAX-RS with Schema Validation

I have a RESTful service that has a single path parameter and a parameter that is unmarshalled from the request body. The request body parameter is XML for which I have an XSD. I've been trying to ...
3
votes
1answer
82 views

On the client side, how should I be using complex type objects returned by a CXF webservice?

I've just started using CXF 2.4 to expose some methods in an existing web application. One of the methods returns a complex type object - Employee which has an Address object as a property. The ...
3
votes
1answer
139 views

Changing log level on AXIS and cxf webservices

I am accessing a webservice deployed in some other remote machine which is implemented using axis2. I have created a webesrvice using cxf which in turn invokes the other wesbervice which i mentioned ...
3
votes
2answers
77 views

In the context of ServiceMix/CXF, what does 'transport' mean?

I have identified a concept pervading many components and ServiceMix elements. The term is transport. I have seen it used when defining CXF endpoints mostly. See for example this thread post: how to ...
3
votes
1answer
191 views

CXF java2ws: how to include external xsd files?

I generate WSDL files for several web services (from the server service definitions) where I have already XML schemas (*.XSD) for the beans used as parameters. How do I tell java2ws to reference these ...
3
votes
2answers
731 views

CXF Wsdl2Java Best Practice

I'm currently using cxf 2.4.0 and my code is a caller to a webservice. I was able to generate the client side java files using the cxf plugin in Maven. My question is what is the best practice for ...
3
votes
1answer
527 views

How to debug Wsdl2Java Jaxb error “declarations cause a collision”

I have a wsdl that was generated by .NET that I am trying to consume in a java application. To do this, I am trying to use the CXF Wsdl2Java tool. The problem is that when the tool runs, it throws a ...

1 2 3 4 5 16