Re: Overloaded methods - XFire-CXF with Aegis

2007-12-17 Thread Dain Sundstrom
Specifically, I believe you can not have to methods mapped to the same operation name in JaxWS, but you can change the operation name of one of the methods using the @WebMethod annotation (see the example in the linked example [1]). Unfortunately, there doesn't seem to be any equivalent

Re: Overloaded methods - XFire-CXF with Aegis

2007-12-17 Thread Daniel Kulp
@incubator.apache.org Subject: Re: Overloaded methods - XFire-CXF with Aegis Specifically, I believe you can not have to methods mapped to the same operation name in JaxWS, but you can change the operation name of one of the methods using the @WebMethod annotation (see the example in the linked example [1

Re: Overloaded methods - XFire-CXF with Aegis

2007-12-15 Thread Glen Mazza
Am Freitag, den 14.12.2007, 18:29 -0800 schrieb SBixby: I have a WebService class that has a pair of overloaded methods. I don't believe you can do that with web services[1]--JAX-WS doesn't support overloaded methods. Glen [1] http://forums.java.net/jive/thread.jspa?threadID=29300

Overloaded methods - XFire-CXF with Aegis

2007-12-14 Thread SBixby
I have a WebService class that has a pair of overloaded methods. One has two parameters - an object reference and a long value, returning an array of objects. The other adds a third parameter, a String. I'm using Spring and jaxws:endpoint tags to load the service, per many of the examples on