On Tue, Nov 04, 2003 at 03:29:38PM -0800, Jeremy Boynes wrote: > In the EJB DD I can specify different transaction behaviour for the same > method on different interfaces (e.g. the getFoo() method could be REQUIRED > on the remote but MANDATORY on the local). > > Anyone know where I specify this for a web-service endpoint invocation?
Same as before, but you use ServiceEndpoint as the interface name, rather than Home, LocalHome, Remote, or Local. <method> <ejb-name>Foo</ejb-name> <method-intf>ServiceEndpoint</method-intf> <method-name>*</method-name> </method> -David
