views:

1902

answers:

2

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?

+3  A: 

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 purhaps 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")]

Hope this helps

Shiraz

Shiraz Bhaiji
+2  A: 

The primitives are not reference types, but rather they are value types. You can make a value type "nullable" a couple ways.

The short-hand is

int? i;

or long-hand here

Nullable<int> i;
Greg Ogle