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 Bharath Gargesh
same URL as you did for the server side publish. > > > Dan > > > > On Fri April 24 2009 6:29:07 am Bharath Gargesh wrote: >> 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. >>

Re: Writing my own transport

2009-04-24 Thread Bharath Gargesh
t;;, > "local://localhost:9090/hello"); > HelloInterface proxy = service.getPort(portName, HelloInterface.class); > > Basically, use the same URL as you did for the server side publish. > > > Dan > > > > On Fri April 24 2009 6:29:07 am Bharath Gargesh

Re: Writing my own transport

2009-05-07 Thread Bharath Gargesh
Message inMessage = new MessageImpl(); > exchange.setInMessage(inMessage); > > //set things like protocol headers and stuff here > > inMessage.setContent(InputStream.class, is); > > incomingObserver.onMessage(inMessage); > > > > Dan > > > On S