Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们有 WSDL 和 XSD 文件给我们,
现在我们如何在 WSDL 中使用给定的 XSD,而不在 WSDL 中手动添加所有 XSD 元素。我们有什么东西可以直接将 xsd 文件导入 WSDL 吗?
欢迎提出建议。
XSD 是您将发送给 Web 服务的对象的架构。使用下面的命令行从您的 XSD 文件创建序列化对象。例如,假设您的语言是 C#,而您的 Web 服务是 SendData()
xsd.exe -c -l:c# -n:XmlSerializationHowTo yourobject.xsd
这将创建一个名为 yourobject.cs 的类文件 在您的代码中,引用您的 Web 服务,然后调用 SendData(yourobject); 请注意,您还可以从 xsd 创建示例 xml,反之亦然。