How to read Cookies in CXF Client

2010-12-18 Thread mike
Does anybody know, how to read the JSESSIONID cookie? I'm sure, that the cookie is set by the server. I try this: this.service = JAXRSClientFactory.create(http://localhost;, RegistrationService.class); this.client =

Re: How to read Cookies in CXF Client

2010-12-21 Thread mike
object : cookies) { cookie = (String) object; if (cookie.contains(JSESSIONID)) { // cookie looks like that: JSESSIONID=m4i8fbdufhiy12tlnpd1hfp3f;Path=/ cookie = cookie.substring(cookie.indexOf(=) + 1, cookie.indexOf(;)); } } } Cheers! Mike -- View this message in context

How to get @Path annotation value in cxf client

2011-01-03 Thread mike
(path, registrationData.getMail())); this.service.register(registrationData); } } does cxf offer a way to get that path value or do i have to get it with reflection? Thanks in advance mike -- View this message in context: http://cxf

3.3.0 change log

2021-01-31 Thread Mike
Hi- Is there a change log for 3.3.0 I am not finding somewhere? We upgraded from 3.2.13 to 3.3.0 and it’s breaking our apps and I can’t figure out why. In one case we extend FailoverTargetSelector but it gets ignored. Thanks for any help- Mike Sent from ProtonMail Mobile

Fault thrown in Rest In-Interceptor not handled by ExceptionMapper

2009-12-17 Thread Mike O'Neil
handleMessage(Message message) throws Fault { throw new Fault(Not handled by ExceptionMapper!); } } Any insight or help would be appreciated. Much thanks, Mike

Re: How do I access the request URI from an ExceptionMapper?

2009-12-17 Thread Mike O'Neil
Great, thank you for the clarification. I don't see any limitation either. Mike On Thu, Dec 17, 2009 at 5:03 PM, Sergey Beryozkin sbery...@progress.com wrote: Hi It is thread safe, it is a thread-safe proxy which is injected. Now, as far as the lifecycle of providers is concerned (body

Changing default url to download wsdl

2010-04-15 Thread Mike O'Neil
By default a jaxws soap endpoint allows the generated wsdl to be downloaded by putting ?wsdl after the endpoint address. Does anyone know if this is configurable? Thanks, Mike

Re: How to consume SharePoint Service Response (Java/.NET interop)?

2010-04-21 Thread Mike SP
I tried this interceptor below. I added some printlns and saw that the originalXML string was being set correctly. However, that string is not used anywhere so I'm not sure if this is missing some code or not. The end result is that even though I can see that the correct data is available in

Re: filtering elements in jaxrs

2010-04-28 Thread Mike O'Neil
in a class which converts a ResultSet or a SolrDocument into your bean). Mike On Wed, Apr 28, 2010 at 6:58 PM, KARR, DAVID (ATTSI) dk0...@att.com wrote: -Original Message- From: Jason Chaffee [mailto:jchaf...@ebates.com] Sent: Wednesday, April 28, 2010 2:45 PM To: users

Aegis, setDefaultNillable() and null return

2010-07-23 Thread Mike Noordermeer
these options, I can't return nil from my webservice methods anymore. Does anyone know if there is an annotation I can set to allow null/nil returns from a service method? -- Regards, Mike Noordermeer m...@normi.net

Re: Aegis, setDefaultNillable() and null return

2010-07-25 Thread Mike Noordermeer
declare a return value (of a service method) to be nillable when using Aegis? -- Regards, Mike Noordermeer m...@normi.net

Re: Aegis, setDefaultNillable() and null return

2010-07-28 Thread Mike Noordermeer
/XMLSchema-instance/ Any ideas? If not I guess I'll have to not use setDefaultNillable(false) and just tag everything that's non-nillable. -- Regards, Mike Noordermeer m...@normi.net

Adding custom HTTP header to SOAP request causes bad SOAPAction to be sent

2012-01-18 Thread Mike Hurley
wrote this I saw there's a 2.5.1 out. I didn't see anything relevant in the release notes, but that's something else I'll try. Thanks! Mike Hurley Software Engineer mhur...@renovosoftware.commailto:mhur...@renovosoftware.com www.renovosoftware.comhttp://www.renovosoftware.com/ [cid:image001.jpg

RE: Adding custom HTTP header to SOAP request causes bad SOAPAction to be sent

2012-01-18 Thread Mike Hurley
is correct, make sure it's not user error. Thanks, Mike From: Mike Hurley [mailto:mhur...@renovosoftware.com] Sent: Wednesday, January 18, 2012 11:19 AM To: users@cxf.apache.org Subject: Adding custom HTTP header to SOAP request causes bad SOAPAction to be sent I am trying to consume a SOAP

RE: Adding custom HTTP header to SOAP request causes bad SOAPAction to be sent

2012-01-19 Thread Mike Hurley
I have added a new issue. https://issues.apache.org/jira/browse/CXF-4046 Thanks, Mike -Original Message- From: Glen Mazza [mailto:gma...@talend.com] Sent: Wednesday, January 18, 2012 4:05 PM To: users@cxf.apache.org Subject: Re: Adding custom HTTP header to SOAP request causes bad

wsdl2java and basic authentication credentials

2012-02-06 Thread Mike Samson
Hello All, Is there any way to set basic authentication credentials for the wsdl2java executable (or embedded WSDLToJava) when it downloads a WSDL? I would like to be able to parse WSDLs that are password protected. Thanks, Mike -- View this message in context: http://cxf.547215.n5

JAXB qualified namespace not working

2012-02-26 Thread Mike Key
I apologize if this question has been answered before. I looked and have seen similar questions asked but not need an answer. I have a code first JAX-WS service built with CXF 2.5.2 with a simple login service that takes a LoginType which I've annotated as follows: @XmlRootElement(namespace =

Re: JAXB qualified namespace not working

2012-02-26 Thread Mike Key
elements). So in short it would seem that even though both are in the same namespace, the service does not seem to think that LoginRequest needs to be in a qualified namespace. On Sun, Feb 26, 2012 at 7:50 PM, Glen Mazza gma...@talend.com wrote: On 02/26/2012 09:44 PM, Mike Key wrote: … However

Re: Configuring CXF to work with WS-Security

2013-01-11 Thread Mike Thomsen
I turned on debugging at the log4j root logger and saw this: 07:06:22,754 DEBUG UsernameTokenProcessor:49 - Found UsernameToken list element 07:06:22,754 DEBUG UsernameTokenValidator:78 - UsernameToken user Mike 07:06:22,754 DEBUG UsernameTokenValidator:79 - UsernameToken password type null 07:06

Re: Configuring CXF to work with WS-Security

2013-01-11 Thread Mike Thomsen
Thanks! That seemed to work. Sent from my iPhone On Jan 11, 2013, at 9:51 AM, Colm O hEigeartaigh cohei...@apache.org wrote: Try using the action configuration: entry key=action value=UsernameTokenNoPassword Timestamp/ Colm. On Fri, Jan 11, 2013 at 12:35 PM, Mike Thomsen mikerthom

Failing to drop inbound XML element with invalid content

2014-03-17 Thread Mike Watson
know what I'm doing wrong here? Any pointers on how I get rid of this element and it's troublesome content? BTW I'm using CXF v2.7.10 with Java 7. Kind regards, Mike

Re: Failing to drop inbound XML element with invalid content

2014-03-17 Thread Mike Watson
Thanks Daniel. I worked that out about an hour ago and am implementing it now! Thanks for the quick reply though. It's a shame there's not an out of the box interceptor for this as it's probably a pretty common use case. Regards Mike On 18/03/2014 9:06 AM, Daniel Kulp dk...@apache.org wrote

cxf-codegen-plugin 3.2.4 Error in POM

2021-06-08 Thread Mike Oliver
enable full debug logging. [ERROR] [ERROR] For more information about the errors and possible solutions, please read the following articles: [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException *Mike Oliver** Founder**, Open 4 Business Online* Tel: +1(95