Hi, I read the WADL spec and the wadl2java code (which creates the client stubs from a wadl file). The generated code seems work like that (for a boolean parameter): - if the param is true, the name is added (to the matrix or query string) (with no values); - if it is false, nothing is added.
I wonder what the expected behavior for a server? Is there some spec or convention about "how to handle a boolean value from a query string/matrix?" For now, i do that, but i'm not sure if it's the right way: - if the query string does not contain my param, i set my internal representation to false; - if the query string contains my param, i set my reprensentation to true. Should i parse the value too? Any comments (and pointers) are welcome (and appreciate ;-) Cheers -- Vincent Ricard

