gpt4 book ai didi

c# - 当部分验证规则在 WSDL 中时,如何使用 XSD 验证 XML

转载 作者:数据小太阳 更新时间:2023-10-29 01:51:47 26 4
gpt4 key购买 nike

我使用 C#、.NET 4.5、控制台应用程序。我在服务引用中添加了 WSDL 文件。 WSDL 内部是验证规则,例如:

<xs:complexType name="xRequest">
<xs:sequence>
<xs:element name="SenderDateTime" type="ip:grDateTime"/>
<xs:element name="SenderId" type="ip:grIdentifier"/>
</xs:sequence>
</xs:complexType>

还有 XSD 文件,其中包含验证规则的详细信息,例如:

<xs:simpleType name="grDateTime">
<xs:restriction base="xs:dateTime">
<xs:pattern value="[0-9]{4,4}\-[0-9]{2,2}\-[0-9]{2,2}[T][0-9]{2,2}:[0-9]{2,2}:[0-9]{2,2}(\.[0-9]{1,6}){0,1}"/>
</xs:restriction>
</xs:simpleType>

而且我已经从 Reference.cs 中的 WSDL 自动生成属性,例如:

public partial class xRequest
{
private string senderIdField;
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=1)]
public string SenderId {
get {
return this.senderIdField;
}
set {
this.senderIdField = value;
this.RaisePropertyChanged("SenderId");
}
}
}

我将 xRequest 对象序列化为 XML,我想对其进行验证。当部分验证规则在 WSDL 中时,如何使用 XSD 验证 XML?

最佳答案

它并不像它应该的那样直截了当...看看这个 article (第 4、5 和 11 步),我认为这本质上是您想要做的(客户端),但它也展示了如何在服务器端进行验证。

关于c# - 当部分验证规则在 WSDL 中时,如何使用 XSD 验证 XML,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43775882/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com