RE: [VOTE] Release CXF 2.1.5

2009-04-24 Thread Sean O'Callaghan
+1 dkulp wrote: > > This is a vote to release CXF 2.1.5 >

RE: [VOTE] Release CXF 2.2.1

2009-04-24 Thread Sean O'Callaghan
+1. dkulp wrote: > > [T]his is a vote to release CXF 2.2.1 >

RE: [VOTE] Release Apache CXF 2.0.11

2009-04-24 Thread Sean O'Callaghan
+1 dkulp wrote: > > This is a vote to release CXF 2.0.11 >

Re: Writing my own transport

2009-04-24 Thread Bharath Gargesh
Hi Dan, I wanted to write my own transport, but then I saw your reply to this thread and found out a way to do this. But only that I was able to go half way through. On the Server side I did the following: 1.) Develop a JAX-WS and publish it to a local address. 2.) Got a handle to the LocalConduit

Re: Writing my own transport

2009-04-24 Thread Ulhas Bhole
Hi Bharat, Looks like you are trying to use client side to act as server so what you need is creating a Destination (similar to what you have done at server side for the response) -- Ulhas Bharath Gargesh wrote: Hi Dan, I wanted to write my own transport, but then I saw your reply to this th

Re: Writing my own transport

2009-04-24 Thread Daniel Kulp
Bharath, It's relatively simple. Service service = new Service(seviceName); service.addPort(portName, "http://schemas.xmlsoap.org/soap/";, "local://localhost:9090/hello"); HelloInterface proxy = service.getPort(portName, HelloInterface.class); Basically, use the same

[RESULT][VOTE] Release Apache CXF 2.0.11

2009-04-24 Thread Daniel Kulp
This vote passes with +1s from: dkulp, davidb, bmargulies, ningjiang, ffang, ubhole, sberyozkin, jimma, eglynn, gmazza, seanoc, cschneider and no other votes. I'll get things syncing to the release locations. Thanks! Dan On Tue April 21 2009 4:41:47 pm Daniel Kulp wrote: > This is a vote

Re: [VOTE] Release CXF 2.1.5

2009-04-24 Thread Daniel Kulp
This vote passes with +1s from: dkulp, davidb, bmargulies, ningjiang, ffang, ubhole, sberyozkin, jimma, eglynn, gmazza, seanoc, cschneider, jgenender and no other votes. I'll get things syncing to the release locations. Thanks! Dan On Tue April 21 2009 4:44:19 pm Daniel Kulp wrote: > This i

[RESULT] [VOTE] Release CXF 2.2.1

2009-04-24 Thread Daniel Kulp
This vote passes with +1s from: dkulp, davidb, bmargulies, ningjiang, ffang, ubhole, sberyozkin, jimma, eglynn, gmazza, seanoc, cschneider, jgenender and no other votes. I'll get things syncing to the release locations. Thanks! Dan On Tue April 21 2009 4:45:46 pm Daniel Kulp wrote: > his is

Re: Writing my own transport

2009-04-24 Thread Bharath Gargesh
Hi Dan, As per your and Ulhas's reply, I am able to create a Service which can publish to the Loal address. I am also able to capture the Message published from the client, in the observer of the LocalDestination. Thank you very much for that. Here is what I am trying to do, I work on a platfor

Re: Writing my own transport

2009-04-24 Thread Bharath Gargesh
Hi Dan and Ulhas, Thanks to you two, now I can publish messages to Local Transport and intercept them. Now I am able to intercept the messages in the MessageObservers of the LocalDestination and the LocalConduit. I work on a platform which provides Java API for IPC. The API allows transfer of b