作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我有一个 WCF 服务引用:
http://.../Service.svc(?WSDL)
我有一个包含兼容 SOAP 信封的 XML 文件
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Body>
<MyXML>
...
现在,我想通过一些 C# 代码将此原始数据直接发送到服务(并接收响应),而不使用 Visual Studio 服务引用。
这是否可能,如果可能,如何实现?
最佳答案
你可以使用 UploadString .您需要适本地设置 Content-Type
和 SOAPAction
header :
class Program
{
static void Main(string[] args)
{
using (var client = new WebClient())
{
// read the raw SOAP request message from a file
var data = File.ReadAllText("request.xml");
// the Content-Type needs to be set to XML
client.Headers.Add("Content-Type", "text/xml;charset=utf-8");
// The SOAPAction header indicates which method you would like to invoke
// and could be seen in the WSDL: <soap:operation soapAction="..." /> element
client.Headers.Add("SOAPAction", "\"http://www.example.com/services/ISomeOperationContract/GetContract\"");
var response = client.UploadString("http://example.com/service.svc", data);
Console.WriteLine(response);
}
}
}
关于c# - 从 C# 将原始 SOAP XML 直接发送到 WCF 服务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1728293/
我是一名优秀的程序员,十分优秀!