Just a quick question, can WS-Address solve this kind of problem ?
Willem.
Glen Mazza wrote:
AFAICT, all you're asking for is a web service to call another web
service. Further, for your original client that activates everything,
for it to be one-way because it doesn't need a response. One of our
simple examples in the cxf/samples distribution does have such one-way
web services I believe.
As for a service calling another service, if you can run wsdl2java on
that other service you should be able to use the generated JAX-WS
artifacts from your web service to accessing that client third party.
Otherwise, SAAJ or Dispatch objects might be able to help you--I do that
here[1], also java.net.URL[2] could be yet another option for you.
HTH, (although I suspect I'm not getting all of your question)
Glen
[1] http://www.jroller.com/gmazza/date/20071102#NWSstep6
[2] http://www.javapassion.com/handsonlabs/wsrest/
Am Donnerstag, den 06.12.2007, 16:15 -0800 schrieb mule1:
Sorry, didn't clarify what I meant by client. By client, I meant third party
customer - has a url exposed to which I need to post the respose. Meaning,
my outbound message, which is currently in xml format needs to be posted to
that third part customer's url. It is just like subscriber in jms.
Glen Mazza-2 wrote:
Do clients have URLs? I'm confused.
Am Donnerstag, den 06.12.2007, 12:02 -0800 schrieb mule1:
Hello,
With cxf, is there a way to post an outbound message on to a client's
url?
e.g. I have a method that generates a message in xml format. I need to
post
this to a client's url. Not sure whether there is a way I can do this
with
cxf.
Thanks.