I had a similar problem[1], Note #3. To conform with WS-I Basic Profile, your wsdl:inputs need to be unique across all wsdl:operations in the WSDL even if they are identical. So if you have them point to differently named (empty in your case) request objects, you should be OK. (I haven't tested that with empty request objects though so YMMV.)
HTH, Glen [1] http://www.jroller.com/gmazza/date/20071019#notes Am Mittwoch, den 06.02.2008, 10:44 -0800 schrieb Scott A: > I have several operations in my service that take no parameters (ie, are > purely informational). When I do a GET operation, they work just fine, but > when I do a POST, I always get the response to the one that comes first > alphabetically. > > Is there a way to tell CXF which operation I wanted to do, so it will not > try to infer it from the parameters? It does not appear to be looking at the > URL as it does in GET operations.