What are some good examples of a WS-Eventing client in Java? - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T07:19:21Zhttp://stackoverflow.com/feeds/question/57915http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/57915/what-are-some-good-examples-of-a-ws-eventing-client-in-java0What are some good examples of a WS-Eventing client in Java?Joshua2008-09-11T23:35:21Z2009-01-06T14:15:03Z
<p>There are a few web service frameworks available for Java: Axis2, CXF, JBossWS, and Metro. Does anyone have some good examples of a WS-Eventing client with these frameworks?</p>
http://stackoverflow.com/questions/57915/what-are-some-good-examples-of-a-ws-eventing-client-in-java/58413#584130Answer by David Crow for What are some good examples of a WS-Eventing client in Java?David Crow2008-09-12T06:45:21Z2008-09-12T06:45:21Z<p>Check out <a href="http://ws.apache.org/savan/source-repository.html" rel="nofollow">Apache Savan</a>. It's a publisher/subscriber implementation for Axis2 that supports WS-Eventing (see <a href="http://svn.apache.org/viewvc/webservices/savan/trunk/java/modules/samples/eventing/src/sample/eventing/Client.java?view=markup" rel="nofollow">sample.eventing.Client</a> for an example client).</p>
<p>JBossWS has some information about setting up a service <a href="http://www.jboss.org/jbossws/user-guide/en/html/1.0.4/en/html/wseventing.html" rel="nofollow">here</a>, but I didn't see any example for a client. Regarding CXF and Metro, I'm not sure if they have specific support for WS-Eventing yet.</p>