How to catch Unavailable Endpoint Service Exception

2009-07-23 Thread Michael Paolo Cariaso
Hi all, If a request was sent to an endpoint service, and the service is NOT available, it does not return an exception even if i placed a try/catch block on the method invoked. is there a way to extract the exception? Or, there is no exception at all. Thanks, Paolo

Re: Use CXF to transport message Through Java Socket

2009-07-16 Thread Michael Paolo Cariaso
TTP Client it could be much > cheaper just to use a SocketConduit. > > So yes, a patch would be welcomed :-) > > cheers, Sergey > > > dkulp wrote: > > > > On Tue July 14 2009 9:19:33 am Michael Paolo Cariaso wrote: > >> Hi, > >> > >

Use CXF to transport message Through Java Socket

2009-07-14 Thread Michael Paolo Cariaso
Hi, Is it possible to use CXF to send any message(soap, html in String or byte array) via plain java Socket instead of JAXWS(HTTP)? I've been looking at Conduit Class but I can not find any implementation that will allow it to connect via socket instead of HTTP. Any reply will be appreciated muc

CXF SOAP request via socket transport

2009-07-09 Thread Michael Paolo Cariaso
Hi, Is it possible to send SOAP request through a Java Socket using CXF? the SOAP request can actually be contained as a String and loaded to a buffered socket writer. However, I'm wondering if CXF can automate this.