In my EDI stuff, one of my suppliers uses services.
I just added the code to send them a xml file via http.
If it goes well they respond with a URL for the client saying its all good, or recommending products that might replace products not available, so they can fix up their order.
I am using widgets to call a java service that calls their service.
I get back a httpresponse that will either have error or url.
I was not sure how to get to the URL.
I know in java you can redireect, as I do this in my auth stuff.
Is that the best way? I did a out param with a url, but not sure I need it, or if there is a better technique compared to the java redirect?
Joel Fradkin