Re: CXF confuses operations

2008-03-04 Thread Scott Anderson
Is it possible to encode an enum for a parameter in a GET request? For this particular instance, I'm doing a simple query that takes an enum object, but CXF doesn't seem to know how to convert the string to an enum (it throws a class cast exception) unless I use POST. Thanks, Scott On Mon, Mar

Re: CXF confuses operations

2008-03-04 Thread Glen Mazza
operation I was referring to, despite it being specified in the POST URL. Is there any good solution to this, other than using GET or changing the parameter names? Thanks Scott -- View this message in context: http://www.nabble.com/CXF-confuses-operations-tp15791947p15839329.html Sent

Re: CXF confuses operations

2008-03-03 Thread Glen Mazza
That's not WS-I Basic Profile compliant, because for many web service stacks, it is the parameters that are used to determine which operation is called.If you run wsdl2java with the validation option you should see a warning to that effect. Metro also would complain about that, although they

CXF confuses operations

2008-03-02 Thread Scott Anderson
If I create two operations with different messages, but which have the parameters of the same name (which are unwrapped), CXF is unable to distinguish which operation I was referring to, despite it being specified in the POST URL. Is there any good solution to this, other than using GET or