Apache 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)

0
votes
0answers
6 views

How can I intercept outgoing messages on CXF JAXRS clients?

I am trying to create a Jaxrs client for some web-services with customized securities so that I wanna intercept my outgoing messages. I created an CXF proxy as the following: public <T> T ...
0
votes
0answers
11 views

apache cxf oauth 2.0 restful web service

i am trying to integrate apache cxf oauth 2.0 for cxf restful web services in our existing spring project using maven but it shows java.lang.ClassCastException: ...
0
votes
1answer
27 views

Eclipse Web Service Client wizard and CXF

I'm trying to create a Web Service Client using the Eclipse Juno SR2 wizard. The service is correctly deployed and running on a Glassfish 3.1.2 server and I can see the WSDL file or create the client ...
0
votes
0answers
8 views

CXF - classcastexception when calling client of webservice

When Im calling webservice with the following way (the client classes are generated with wsdl2java), I have a classcastexception : WcfProjectService projectService = new WcfProjectService(); ...
0
votes
1answer
17 views

How do i modify HTTP headers for a JAX-WS response in CXF?

I have been working on developing CXF web services that sit behind a security proxy which asks for HTTP basic authentication prior service invocation. These services communicate between each other and ...
0
votes
0answers
13 views

Configuring CXF codegen plugin

I have a problem in my pom.xml file, i didn't understood very well what is the problem since i use jdk/jre 1.7(classloader) (the latest), it's about a webservice project using CXF/Spring : My ...
0
votes
0answers
20 views

Need pointers on using base class as a request parameter in SOAP based service

This might sound lame, but I'm trying to figure a way to use a base class in a SOAP based client code. I've a service which takes a Request object and returns a Response object @WebService public ...
0
votes
0answers
10 views

UsernameToken WS-Security with Apache CXF Annotations (WSS4J)

I'm trying to create a "java first" webservice that will use plain and simple UsernameToken WS-Security. I've attempted to follow the examples from CXF. When I query my wsdl I see no mention of ...
0
votes
0answers
11 views

Webservice Client is unable to find the method

I have a web service the following are the objects. com.School { Student student; Teacher teacher; //And some getter and setter methods. } I have the webservice method as public School ...
0
votes
0answers
11 views

Apache CXF OAuthDataProvider in a JAX-RS web application

I'm writing a plain JAX-RS web application that exposes a REST API; I use Spring, but only for actual configuration, and rely on plain CXF and Hibernate for all other functionality. I now want to ...
1
vote
1answer
22 views

CXF - Wsdl2java - the XX property is already defined

I use CXF to generate client class to access web service server. The web service are based on WCF (.NET). When I call wsdl2java, I have the following error : The id property is already defined. use ...
1
vote
2answers
32 views

“XXX is an interface and jaxb can't handle interface” error in liferay context only

I use CXF 2.7.5 to call Web services. I generated the client classes with wsdl2java program (in command line MSDOS and in maven). I must use xmlbeans databinding because with jaxb (default ...
0
votes
1answer
11 views

Apache CXF WebClient multiple requests with www-authenticate header

I got simple JAX-RS resource and I'm using Apache CXF WebClient as a client. I'm using HTTP basic authentication. When it fails on server, typical 401 UNAUTHORIZED response is sent along with ...
0
votes
0answers
19 views

Parsing Soap Fault Exception with no namespace

I used Apache CXF to create java Classes using a given WSDL. Below is the incomplete WSDL (I only included the things which I'm about to ask) <definitions xmlns="http://schemas.xmlsoap.org/wsdl/" ...
0
votes
0answers
13 views

How to register container response filter in CXF?

I recently upgraded from apache cxf 2.6.4 to 2.7.4. I had a custom ResponseHandler registered but since the migration guide for CXF 2.7.4 mentions that they are going to deprecate response handlers ...
0
votes
0answers
9 views

Unexpected wrapper element when using CXF generated client

I've generated a client for a webservice using CXF's wsdl2java. THe client connects OK, but throws an expection complaining that the response found doesn't match the expected response. May 22, 2013 ...
0
votes
1answer
15 views

How does one configure CXF generated client for preemptive HTTP auth?

I have a client that was generated by CXF using a local wsdl file. The client connects OK, and I get an expected 401 error from the web server. The problem I've run into is not being able to properly ...
0
votes
0answers
16 views

Sending SOAP messages to CXF WebServiceProvider service results in exception “SOAPAction does not match an operation”

I've created a service using the @WebServiceProvider annotation, as it's purpose is to forward SOAP requests to another service. The problem is that any client that invokes the service causes a ...
1
vote
0answers
18 views

How to configure multiple webservices using applicationContext.xml and CXF

I have a applicationContext.xml in which I am configuring all my webservices like below - <import resource="classpath:META-INF/cxf/cxf.xml" /> <import ...
0
votes
1answer
18 views

What version of CXF should I use?

I have been updating some of my example CXF programs. I thought the best approach to selecting the correct version would be to check CXF out from apache and build it on my machine. What I found was ...
0
votes
0answers
13 views

How do you get a ns prefix map from CXF SOAP request?

I'm working with requirements for a SOAP endpoint that takes in an XML object that includes an XPath query. This query is namespace dependent. The Xpath string will have namespace prefixes that will ...
-1
votes
0answers
13 views

use mtom with cxf-wsn to send attachment with notification

I am using cxf-wsn and now want to send attachments with the notification using mtom. Is it possible to get mtom working with cxf-wsn? For example can the cxf-wsn sample be modified to support mtom? ...
0
votes
1answer
59 views

Not able to generate client code with wsdl2java and maven using CXF

I'm using maven cxf-codegen-plugin to generate client files from wsdl but not able to do so. I want that all the wsdl files in the folder src/main/wsdl should be scanned and corresponding clients ...
0
votes
0answers
22 views

Error while creating web service using apache CXF wizard

I am creating a web service through the apache CXF. but while i proceed(before the wsdl gets created), i receive the following error Exception in thread "main" java.lang.NoClassDefFoundError: ...
0
votes
0answers
16 views

Circular imports in wsdl - java class generation

There are two wsdls : svcwsdl which has port type and service definitions svcwsdl1 which has the binding definitions svcwsdl refers svcwsdl1 for binding type and svcwsdl1 refers svcwsdl for port ...
0
votes
1answer
22 views

Custom object input for CXF-JaxRS WebClient

I am pretty new to RESTful, and trying to create a sample services to achieve POST on void methods. I am able to test the method for String class but getting Exception while testing with custom ...
0
votes
2answers
24 views

programmatically get server load information from Apache ServiceMix using JMX

Is it possible to get the server load information of a webserver deployed on a ServiceMix / Fuse ESB. I dont want to use Jconsole but get the information by running a java file and writing the values ...
0
votes
1answer
21 views

JSONProvider transform elements to attributes (cxf)

We are building a REST service with CXF where we send and receive data in both JSON and XML In the JSON version we dont want to bother our clients with using the '@' notation for attributes and using ...
0
votes
0answers
31 views

onCompletion being triggred, not onException

This is a varition of the question, I asked in Camel's CXF component not catching onException(Exception.class) I have implemented the solution which Claus suggested in the above but its not ...
0
votes
0answers
21 views

Jetty start-up optimaza

I am using apache CXF to generate java source classes from wsdls (aprox 50), which are loaded in jetty server. Jetty (v.7.4.5) is started programmatically using ...
0
votes
0answers
56 views

Received error response from long request web service

We have the following problem. There is an application with web services (client) on Apache CXF and under JBoss AS7. There are 3 scenarios: I am sending a request through our application with a ...
0
votes
1answer
15 views

Map as return type of @MatrixParameter

The Rest-api we are building we need some sort of filtering system to prevent too much (useless) data to be transfered to our client. The use of @MatrixParameter seems like a nice solution since this ...
0
votes
1answer
27 views

Using apache cxf to dynamicly create web service client (fix no operation found unchecked exception), invoke operation with authentication

So I wanted to to find a way to invoke web service operation dynamically with authentication. This is what I found.
0
votes
0answers
33 views

Grails injected services exposed as web methods in cxf

I have a service class that I expose as jaxws using the Grails Cxf plugin. In my service I have to inject another service class which I use in my web services. If I make the service field public I get ...
0
votes
0answers
29 views

Consuming WS-Security protected webservice with WCF client

I'm trying to consume a soap webservice using a WCF/C# client. The server's wsdl defines its security policy in its wsdl file like this: <wsp:Policy wsu:Id="BindingSecPolicy"> ...
0
votes
1answer
55 views

How to make CXF Logging feature work with SOAP messages?

I have logging set up for CXF. It is successfully logging using log4j. As a test I have modified the settings in log4j.properties, where the root logger is set to INFO. Adding ...
0
votes
0answers
32 views

Accessing service path parameters from CXF Message

I am writing an interceptor to validate the requests that I see. However, I am unable to determine a way to access the path parameters (any parameter for that matter). Although, when I expand the ...
0
votes
0answers
49 views

how to bootstrap Spring in a JbossWS-CXF web service deployed in jboss AS 7.2

TLDR at the bottom: As per the JBossWS-cxf user guide, for a web service, the web.xml should contain the following <web-app xmlns="http://java.sun.com/xml/ns/j2ee" ...
0
votes
1answer
39 views

Consuming service with problematic wsdl - Unexpected Element Exception

I have to consume service with problematic wsdl (cannot change it). At first I had to custom mapping because generated classes were in java.x package. Now I generated vanilla client and tried to use ...
0
votes
0answers
50 views

Programmatically configure WCF client binding to access SSL + Soap 1.1 + Basic Auth

I'm trying to write a C# WCF client (generated by svcutil from wsdl) to access a CXF (java) service implementing the same wsdl. The service is working fine but I'm having trouble connecting to it on ...
0
votes
2answers
33 views

Identify a SOAP message as request or response

I have a middleware which can accept the SOAP request and well as can make SOAP request. I have written the custom interceptors to intercept the inbound and outbound request to log them in ...
0
votes
2answers
47 views

Catching the SOAP Fault error in custom interceptor (Soap12FaultOutInterceptor)

I wrote a custom CXF interceptor to log all the SOAP request and responses into the database and it seems to be working fine with positive test cases and server errors. But when a SOAP Fault occurs ...
0
votes
0answers
28 views

transfrom array to hashed object with Jsonprovider (cxf jax-rs)

I'm building a restfull webservice which is to consumed as both json and xml. The data i'm exposing contains lists of variable 'properties'. (The output is created by from Jaxb java objects) in xml ...
-1
votes
1answer
37 views

namespace issue on web service with Apache CXF

I'm using Apache CXF 2.7.3, and running into a namespace issue that I really don't understand. I've tried extensively to search on this, but most of the results that I find are for different ...
0
votes
0answers
15 views

webservices and cxf transport architecture

a-simple-jax-ws-service Endpoint.publish(address, implementor); it suggests cxf has some private http server ? can this server be replaced eg with jetty or tomcat, if so how ? is it somewhere ...
0
votes
1answer
23 views

Display custom message while mule project is shutdown

In MULE CE 3.3.0, I have this Configuration XML file(I copied it below) <mule xmlns="http://www.mulesoft.org/schema/mule/core" xmlns:http="http://www.mulesoft.org/schema/mule/http" ...
0
votes
1answer
42 views

how can shows wsdl from internet by new address (own address)?

i want use wsdl form internet in mule such as :http://www.ommolketab.org/OML_News.asmx?WSDL i want to : after that i write [http://localhost:8082/myservice?wsdl][2] be showed wsdl from address ...
0
votes
1answer
29 views

classloaders with cxf and jax-ws

in Difference between Jax-ws, axis2, cxf Daniel wrote And for the most part, if you start with the in-jdk JAX-WS impl, you can drop in CXF at any time and it would still work. Can this behave ...
0
votes
1answer
50 views

Rest service - cannot find method / operation

Thought I had some idea of how the urls are mapped, but not having any luck here. CXF 2.7.3 I have a simple rest service that uses post to consume a string. It builds and deploys. I think I should ...
1
vote
0answers
27 views

Webservice consuming image from Android camera only on lower resolutions

I have a webservice running and ready to consume images produced by my Android tablet camera (Samsumg Galaxy TAB 10.1). It works perfectly when consuming images taken at 1024x768 resolution (0.8M). ...

1 2 3 4 5 38