将 XML 文件发送到 URL 位置
示例 XML 文件:
<?xml version="1.0" encoding="utf-8" ?>
<queue>
<txt>d15869d856df1ca3a749d071921f29f8</txt>
<id>d15869d856df1ca3a749d071921f29f8</id>
</queue>
例如,在 iranfairco.com/getXml
中 getXml 从外部请求(例如来自其他站点)获取文件 xml。
现在如何将此 xml 发送到此 url?
Sample XML File:
<?xml version="1.0" encoding="utf-8" ?>
<queue>
<txt>d15869d856df1ca3a749d071921f29f8</txt>
<id>d15869d856df1ca3a749d071921f29f8</id>
</queue>
for example in iranfairco.com/getXml
getXml get a file xml from external request for example from other site.
now how can send this xml to this url??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从你的问题来看,我知道它是一个简单的 Post 或 Get to a URL,因此我想你可以使用 System.Net 的 HttpWebRequest 和 HttpWebResponse 类来发布数据,包括 XML 数据。
From your question i udnerstand its a simple Post or Get to a URL, hence I suppose you could use System.Net's HttpWebRequest and HttpWebResponse classes for posting data, including XML data.