Operations on porttypes/bindings can have Input, Output, and Fault types. There can be multiple Output and Fault types. There can technically also be multiple Input types but I think this is disallowed by the usual (not all) basic WSDL profiles. At the very least Output and Fault types should probably be an iterator (probably input too but honestly never ran across one of those), not just returning the first listed one of each?
An example is an operation taking an input, and returning an output and one of 3 possible faults (validationfault, processingfault, or authenticationfault):
(In addition, could probably stand to add a ton of documentation() calls on a ton of elements as almost everything is documented in a lot of wsdl I deal with.)
Operations on porttypes/bindings can have Input, Output, and Fault types. There can be multiple Output and Fault types. There can technically also be multiple Input types but I think this is disallowed by the usual (not all) basic WSDL profiles. At the very least Output and Fault types should probably be an iterator (probably input too but honestly never ran across one of those), not just returning the first listed one of each?
An example is an operation taking an input, and returning an output and one of 3 possible faults (validationfault, processingfault, or authenticationfault):
(In addition, could probably stand to add a ton of
documentation()
calls on a ton of elements as almost everything is documented in a lot of wsdl I deal with.)