Search code examples
asp.net.netweb-servicesasmx

Optional parameters in ASP.NET web service


I have a ASP.NET web service. This web service works fine. However, the WSDL lists some parameters as optional (minoccurs = 0) and others as non-optional. Some of the optional parameters are actually not optional, others which are marked as non-optional are actually optional. I would like to fix this, but I can't find the location where this information is coming from.

It seems to me that all primitive types (int, boolean etc.) are non-optional and all other parameters are marked as optional. However, I can't find a location where I can change this. I would like to specify default values for the primitive values if they are missing in the request and specify which non-primitive parameter is actually optional. Where do I do this?


Solution

  • I am assuming that when you say ASP.net web services, you are creating web services with ASMX extension. I think that what happens in this case is that all nullable types become optional and non-nullable become non-optional.

    You could perhaps manually edit the generated WSDL file. But then you would have to redo that work if the wsdl was regenerated.

    I would suggest that you switch to WCF with basisHttpBinding (except for the name of you service your clients should not notice the difference).

    Using WCF you can simply mark the parameter in the data contract as required or not:

    [DataMember(IsRequired="false")]