I am curious about the way a non-.NET client application of a WCF service can signal to a given method that it doesn't want to specify a value for a given parameter (making the service then assuming a default value). In other words, how can an application signal a null parameter to a WCF service?
| ||||
|
feedback
|
|
It can exclude the parameter from the SOAP document (assuming HTTP endpoint), assuming this is allowed. Exactly if this is allowed/how this should be done depends on how the XSD is generated. These can be controlled by the arguments to the If If | |||
|
feedback
|
|
If you are communicating to the service using SOAP (or some other XML based standard) you can supply the propery using: | |||
|
feedback
|
|
In addition to Ethan's answer, you can also set the IsRequired property on the DataMember attribute:
When set to false, the DataContractSerializer will set the property to its default value (null, for any nullable types) when that property is missing in the SOAP message. Sometimes it may be easier for SOAP clients in otehr languages to just omit the property, rather than send | |||
|
feedback
|