Hi, Here's a quick (hopefully) question. Is it possible to ensure that function parameters are always non-null? It would be cool if I didn't have to perform a whole bunch of checks on the server-side and just assume that incoming requests don't contain null arguments (at least in cases where null values make no sense - addContact(null) or whatever). I assumed that putting an @XmlElement(required = true, nillable = false) on my business objects would do the trick but I can still pass null arguments using my CXF test rig and they go straight through to the server-side method implementation.
Maybe I'm missing the point somewhere... Any ideas? Much obliged, Anthony
