添加对wcf生成的xsd的限制

时间:2012-06-29 19:39:43

标签: .net wcf xsd wsdl restrictions

所以我正在研究如何格式化从WCF生成的WSDL和XSD,特别是在WSDL和XSD中添加注释/文档以及对各种参数添加限制。

到目前为止,我已经能够通过创建实现IWSDLExportExtension接口的属性以及IOperationBehavior接口,将文档添加到WSDL和XSD中。

有关修改模式的一般想法,请参阅:
http://thorarin.net/blog/post/2010/08/08/Controlling-WSDL-minOccurs-with-WCF.aspx

有关向WSDL添加注释的一般想法,请参阅:
http://msdn.microsoft.com/en-us/library/ms731731(v=vs.110).aspx

但是在尝试在xsd中添加元素限制(通过添加简单类型)时遇到了麻烦。

从这里我可以得到一个异常,说明我无法设置元素类型,因为它已经有一个与之关联的只读类型,或者我可以尝试使用只读类型来添加限制但是没有任何反应。

以下是生成异常的代码 (System.Xml.Schema.XmlSchemaException: The type attribute cannot be present with either simpleType or complexType.)

    var ComplexType = ((XmlSchemaElement)Schema.Elements[Parameter.XmlQualifiedName]).ElementSchemaType as XmlSchemaComplexType;
    var Sequence = ComplexType.Particle as XmlSchemaSequence;

    foreach (XmlSchemaElement Item in Sequence.Items)
    {
        if (Item.Name = Parameter.Name && Parameter.Length > 0)
        {
            XmlSchemaSimpleType tempType = new XmlSchemaSimpleType();
            XmlSchemaSimpleTypeRestriction tempRestriction = new XmlSchemaSimpleTypeRestriction();
            XmlSchemaLengthFacet lengthFacet = new XmlSchemaLengthFacet();
            tempType.Content = tempRestriction;
            tempRestriction.Facets.Add(lengthFacet);
            lengthFacet.Value = "" + Parameter.Length;

            Item.SchemaType = tempType; // <-- Problem code

         }
         ...
     }

这里的工作没有做任何事情:

    var ComplexType = ((XmlSchemaElement)Schema.Elements[Parameter.XmlQualifiedName]).ElementSchemaType as XmlSchemaComplexType;
    var Sequence = ComplexType.Particle as XmlSchemaSequence;

    foreach (XmlSchemaElement Item in Sequence.Items)
    {
        if (Item.Name = Parameter.Name && Parameter.Length > 0)
        {
            XmlSchemaSimpleTypeRestriction tempRestriction = new XmlSchemaSimpleTypeRestriction();
            XmlSchemaLengthFacet lengthFacet = new XmlSchemaLengthFacet();
            tempRestriction.BaseTypeName = new XmlQualifiedName("string", "http://www.w3.org/2001/XMLSchema");
            tempRestriction.Facets.Add(lengthFacet);
            lengthFacet.Value = "" + Parameter.Length;

            // Appears to do nothing
            ((XmlSchemaSimpleType)Item.ElementSchemaType).Content = tempRestriction;

         }
         ...
     }

快速其他说明:    如果我切换到正常for循环并实际尝试用新元素替换trouble元素(我知道hackish ......),我得到以下异常:System.InvalidCastException: Unable to cast object of type 'System.Xml.Schema.XmlSchemaSimpleType' to type 'System.Xml.Schema.XmlSchemaParticle'. 这个我更加好奇,因为它们都应该是XmlSchemaElements吗?

所以基本上,有没有人知道如何添加简单类型/添加简单类型限制到xmlschemaelements并让它出现在使用WCF的WSDL生成的XSD中?

谢谢!


编辑: 添加
tempRestriction.BaseTypeName = new XmlQualifiedName("string", "http://www.w3.org/2001/XMLSchema");

1 个答案:

答案 0 :(得分:0)

在第二个例子中,不要忘记

tempRestriction.BaseTypeName = new XmlQualifiedName("string", "http://www.w3.org/2001/XMLSchema");

在定义方面之前。限制不是单独的模式对象,而是派生方法。它从预先存在的简单类型(例如string

)派生出您自己的简单类型