> A "filter all those properties" approach is to create a > interface for > each of those beans you would like to serialize, but just including > getters and setters for those properties you really want to be > serialized; then let your bean implement that interface > (already does!) > and alter all your web services to not use the bean class but the > "filtered inteface". The main drawback (and innaceptable for me) is
I already tried that. Defined an interface, had a class (that has some other properties besides the one declared in the bean interface) implement it, put the interface name in WSDD file. Axis ended up putting all of the properties (not only the ones defined in WSDD) into the response object anyway. This looks like a bug to me. Shouldn't only the properties listed in the WSDL be serialized? Ideas anyone? Bogdan
