Re: WebServiceException is not propagated from Provider to the client.

2013-05-31 Thread Daniel Kulp
On May 31, 2013, at 11:20 AM, eanbiso wrote: > Sorry, I was wrong: > the exception arrives to the client but very late (with almost a minute of > delay). > Seems to have lost a lot of time in the chain of interceptors on the > dispatcher. > I try to investigate it and get more info. Wow. That'

Re: WebServiceException is not propagated from Provider to the client.

2013-05-31 Thread eanbiso
Sorry, I was wrong: the exception arrives to the client but very late (with almost a minute of delay). Seems to have lost a lot of time in the chain of interceptors on the dispatcher. I try to investigate it and get more info. Andrea -- View this message in context: http://cxf.547215.n5.nabbl

Problem including @Context

2013-05-31 Thread Nic Fellows
I am trying to access the HttpServletResponse in my @Service I'm at a bit of a loss as to why it wont work, can anyone point me in the right direction? Id supply more information but i'm not sure what you will need! Thanks! The code is: @Service("reviewRestService") @Path("/gabble") public

RE: Asynchronous Method Dispatch in CXF?

2013-05-31 Thread Andrei Shakirin
Hi, You can use @UseAsyncMethod annotation available since CXF 2.6.0: http://cxf.apache.org/docs/annotations.html . If transport supports it, CXF will use async version of the method, if not - sync version will be invoked. Regards, Andrei. > -Original Message- > From: Seong Hoon Kim [m

RE: Specifying order of XML elements at runtime?

2013-05-31 Thread Andrei Shakirin
Hi Greg, >Thank you for your input Andrei. I had been relying on LoggingOutInterceptor >messages to see what the XML looked like so I thought maybe it was not >accurate so I changed it to post the XML to a localhost >endpoint and rely on >server side logging to see what the XML payload looked l

WebServiceException is not propagated from Provider to the client.

2013-05-31 Thread eanbiso
Hi all, I have the following problem using a provider to redirect SOAP web service invocation from client to a server. I have the class: public class CustomProvider implements Provider{ public Source invoke(Source request) { DOMSource source = ...;

Re: Question about WS-RM

2013-05-31 Thread Juan Alberto Lopez Cavallotti
Hi Aki, Thank you for your reponse. Yes, I have a decoupled endpoint, I have a standalone client based on cxf's sample projects (nothing fancy added) which is currently working fine, I'm killing it randomly so I can handle that kind of outages I'm aware that you also have a custom interceptor for

Asynchronous Method Dispatch in CXF?

2013-05-31 Thread Seong Hoon Kim
I am planning to implement a set of services based on CXF. What I know is when the function (i.e., method) is invoked at a server side, the response message is sent to the client immediately after the function returns. Unlike this, I need to use asynchronous method dispatch (see below) at a inter

Regression in Content Type handling?

2013-05-31 Thread Klevenz, Stephan
Hi, I did upgrade from CXF 2.7.0 to 2.7.5 recently and recognized some changes in content type handling in the REST part of CXF. There is one strange behavior with response handling in relation to content type. I am having a resource with a method annotated by @Path and @GET and which returns

Re: Question about WS-RM

2013-05-31 Thread Aki Yoshida
Hi Juan, I have a couple of questions. You mention of the backchannel, that means you have configured a decoupled endpoint where the server can asynchronously deliver ack messages to? I didn't see it at least in your beans.xml file. And you have a request-response service right? That means there a