How can I force WCF to autogenerate WSDLs with required method parameters (minoccurs=“1”)?

倾然丶 夕夏残阳落幕 提交于 2019-11-27 20:11:26

I've just written a Blog post about this subject, as I ran into the problem myself last week. It explains how you can modify the metadata that WCF generates at runtime.

Aside from downloading the source file, you only need to add an attribute to your contract definition. Like so:

[ServiceContract]
[RequiredParametersBehavior]
public interface ICalculatorService
{
    [OperationContract]
    int Add(int firstValue, int secondValue);
}

Here's the Blog post that explains it in more detail: Controlling WSDL minOccurs with WCF

Check that MyComplexType is marked with a [DataContract] attribute.

For my own WCF contract, I found that minOccurs = 1 would not show up for IsRequired=true in the generated wsdl until the whole chain of objects implicated in the contract were marked as such.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!