Best unofficial Apache Server developers community
Username
Forgot password?
Sign in with Twitter account
Sign in with Facebook account
List archives

apache cxf February, 2012

Threads Replies First post Last post
How to change JMS topic name programmatically in CXF generated client?
By: anhtuannd
I have WSDL file which contains: <wsdl:port name="NotificationConsumerSoapJms" binding="tns_NotificationConsumer:NotificationConsumerSoapJmsBinding"& gt; <jms:address destinationStyle="topic" …
2 Feb 1, 2012
06:27
Feb 6, 2012
02:14
Reading Soap Headers / Bypass WSDL requests
By: Michael Prieß
Hi, I like to use dynamic routing based on a version number. So I extended a AbstractPhaseInterceptor<SoapMessage> How can I easily recieve the Version from the SoapMessage. Is there a Utility Class? My interceptor is also called when I…
3 Feb 1, 2012
06:55
Feb 3, 2012
13:30
JAX-RS: Convert return value to JAXB-annotated element for transparent marshalling
By: ceineke
My service contains a facade object that accepts and returns domain objects which are POJOs. I've created an XSD for my JAX-RS service that specifies the incoming and outgoing data types and refer to in the <jaxrs:schemaLocations> section. …
4 Feb 1, 2012
10:18
Feb 1, 2012
15:35
Unit testing JAX-RS services
By: cganesan
Hi Is there a way to invoke the URLs for a JAX-RS end point services as part of JUnit test - triggered from MAven build? Does Apache CXF support something like an embedded container towards this? Thanks Chandru
5 Feb 1, 2012
13:42
Feb 17, 2012
10:20
Re: Unit testing JAX-RS services
By: Kiren Pillay
I would suggest having a look at the Unit tests that come with CXF, they seem to have a simpler way of doing this. Regards Kiren On Wed, Feb 1, 2012 at 10:21 PM, KARR, DAVID <dk0### @att.com> wrote: > > -----Original Message----- >…
0 Feb 1, 2012
14:33
Feb 1, 2012
14:33
Re: Unit testing JAX-RS services
By: Sergey Beryozkin
Hi The local transport for proxy-based JAX-RS clients will also be supported as soon as the client runtime becomes 'free' from HttpURLConnection references. Cheers, Sergey On 01/02/12 20:21, KARR, DAVID wrote: >> -----Original…
0 Feb 1, 2012
15:33
Feb 1, 2012
15:33
CXF2.5.1 WS-SecurityPolicy
By: sram
Its the SecurityPolicy issue again, with cxf2.5.1. I ran through all messages posted in this group across different versions and could not figure out this issue. At this point, I'm not sure if I am doing wrong or its a side effect of some neethi…
6 Feb 1, 2012
19:31
Feb 3, 2012
15:38
CXF client exception: Interceptor for {XXX} has thrown exception, unwinding now
By: wintlu
I am encountering this following CXF exception: *warning: Interceptor for {http://xxx.com/wsdl/esc/2011-12-12/}AmazonEC2#{http://xxx.com/wsdl/es c/2011-12-12/}NewDescribeImages has thrown exception, unwinding now java.lang.NullPointerException …
4 Feb 1, 2012
19:50
Feb 2, 2012
02:28
STS Support for digested passwords / (MD5/SHA) check.
By: Francisco Serrano
Hi list, We are trying to integrate the STS into our solution for SSO but we encountered an issue that is hard to solve. For the moment, the token validator uses a callback to be able to verify the correct username and password to deliver…
5 Feb 2, 2012
04:04
Feb 2, 2012
10:57
JAX-RS: Is anyone using CodeGeneratorProvider
By: Sergey Beryozkin
Hi, I'm thinking of deleting CodeGeneratorProvider [1] for 2.6 only, given that it seems to be redundant now that we have a wadl2java command line tool and plugin. The idea behind CodeGeneratorProvider has been that one can just quickly …
1 Feb 2, 2012
09:05
Feb 3, 2012
11:03
Issue with JAX-RS providers.getContextResolver
By: hdave
I am having difficulty getting CXF to use the MOXy JAX-B implementation when I have multiple media types. I have successfully provided the MOXy implementation with two different JAX-B binding XML files (they call them OXM files). Each of the two…
8 Feb 2, 2012
09:47
Feb 3, 2012
16:15
CXF and Spring for Authentication and Authorization
By: Taariq Levack
Hi I have an existing web app using Spring Security and LDAP for authentication and authorization. Now we want some web services to be secured using UsernameToken and SSL. I also want it to reuse the existing spring method level security, this…
5 Feb 2, 2012
23:46
Feb 3, 2012
05:22
JMS transport: No conduit initiator was found
By: Jens
Hi, according to the 2.4 release notes, importing the CXF extensions in the Spring configuration is no longer necessary. I'm running into a problem with that with 2.5.2, however. The original WSDL specifies an HTTP transport but communication…
4 Feb 3, 2012
04:54
Feb 3, 2012
08:43
How to Stor/Get data in CXF Session .
By: chimaira
Hello Sorry for my english, I'll try to be as clear as I can with CXF integrated in my application , I m extending the AbstractPhaseInterceptor class so I can save my Request/Response into an output file. but, while my response xml contains no…
6 Feb 3, 2012
09:04
Feb 6, 2012
16:35
SOAP w/ Attachments still supported
By: Jens
Hi, does CXF (2.5.2) still support SwA? I'm asking because I have a WSDL with SwA enabled, I generated classes from that with enableMIMEContent=true (so I get a DataHandler in my interface), but when I send a message, the attachment part is…
7 Feb 3, 2012
09:47
Feb 14, 2012
05:59
Issue with CXF-2.5.2 regarding UsernameToken
By: COURTAULT Francois
Hello everybody, For UsernameToken, in my client code I have used the following code which is: Map<String, Object> ctx = ((BindingProvider) port).getRequestContext(); ctx.put("ws-security.username",…
10 Feb 3, 2012
11:11
Feb 3, 2012
14:00
REST and MVC for webapps
By: Guy Pardon
Hi, I am looking for examples and/or information on using CXF/REST/JAXRS as the controller for html webapps - instead of Struts or JSF. Any pointers available? Thanks Guy
1 Feb 3, 2012
11:54
Feb 3, 2012
12:18
Fwd: Advice on WSDL file
By: Christopher Magnollay
Hi All, I am trying to use the CXF tool to generate java code from a legacy WSDL file. I was not the one who wrote it (and i suspect he did it by hand) and the cxf maven plugin is telling me that the WSDL is invalid (as is soapUI). I would like to…
2 Feb 3, 2012
12:18
Feb 3, 2012
12:36
Re: REST and MVC for webapps
By: Guy Pardon
Hi, Thanks for answering! The REST/JAXRS paradigm offers a basic controller mechanism, and I can return text/html (and other media types) as well as forward to JSP pages. I've always disliked struts and JSF and am trying to push JAXRS to the…
4 Feb 3, 2012
12:28
Feb 6, 2012
05:57
Re: thread safety (post FAQ)
By: Daniel Kulp
On Thursday, February 02, 2012 3:35:36 PM soa### @web.de wrote: > Dear experienced cxf users, > > I’m working with cxf for the first time and have issues to determine how to > ensure thread safety. I have read the FAQ but am not sure…
0 Feb 3, 2012
13:29
Feb 3, 2012
13:29
1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 >