gpt4 book ai didi

c# - HttpClient 和 SOAP (C#)

转载 作者:IT王子 更新时间:2023-10-29 04:27:23 26 4
gpt4 key购买 nike

我正在尝试使用 HttpClient 类发送 SOAP 消息:

使用 REST 这样做似乎很容易(代码来自 here):

using System;
using System.Net.Http;
using System.Json;

namespace ConsoleApplication39
{
class Program
{
static void Main(string[] args)
{

HttpClient proxy = new HttpClient();
proxy.GetAsync("http://localhost:14892/api/Bloggers").ContinueWith((r) =>
{
HttpResponseMessage response = r.Result;
response.Content.ReadAsAsync<JsonArray>().ContinueWith(
(a)=>
{
foreach(var w in a.Result)
{
Console.WriteLine(w.ValueOrDefault("Name").ToString());
Console.WriteLine(w.ValueOrDefault("Intrest").ToString());
}
});

});

Console.ReadKey(true);

}

}
}

我想用 SOAP 做一些类似的事情。

我有主机 ( http://opensearch.addi.dk/2.2/ )和 POST 的 SOAP 消息:

<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://oss.dbc.dk/ns/opensearch">
<SOAP-ENV:Body>
<ns1:searchRequest>
<ns1:query>dc.title=zorro AND dc.type=bog</ns1:query>
<ns1:agency>100200</ns1:agency>
<ns1:profile>test</ns1:profile>
<ns1:start>1</ns1:start>
<ns1:stepValue>10</ns1:stepValue>
</ns1:searchRequest>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>

...但是如何发送呢?

我承认这是我使用过的第一个 SOAP Web 服务,所以我可能不知道我在做什么,但最简单的形式可能是这样的:

HttpClient hc = new HttpClient();
hc.BaseAddress = new Uri("http://opensearch.addi.dk/2.2/");

HttpContent content = *... something*

HttpResponseMessage rm = await hc.PostAsync("http://opensearch.addi.dk/2.2/", content);

我假设 SOAP 消息应该通过 HttpContent 静态方法(如 HttpContent.Create(..))以某种方式创建,但我无法让它工作......

我知道这是一个愚蠢的问题,但我仍然需要帮助:)!

提...

最佳答案

我需要自己做这件事,因为我在网上找不到任何答案,所以这就是我解决的问题。这使用一个简单的 SOAP 计算器服务和一个“加”方法,该方法接受两个数字并返回总和。

public async Task<int> AddNumbersAsync(Uri uri, int a, int b)
{
var soapString = this.ConstructSoapRequest(a, b);
using (var client = new HttpClient())
{
client.DefaultRequestHeaders.Add("SOAPAction", "http://CalculatorService/ICalculatorService/Add");
var content = new StringContent(soapString, Encoding.UTF8, "text/xml");
using (var response = await client.PostAsync(uri, content))
{
var soapResponse = await response.Content.ReadAsStringAsync();
return this.ParseSoapResponse(soapResponse);
}
}
}

private string ConstructSoapRequest(int a, int b)
{
return String.Format(@"<?xml version=""1.0"" encoding=""utf-8""?>
<s:Envelope xmlns:s=""http://schemas.xmlsoap.org/soap/envelope/"">
<s:Body>
<Add xmlns=""http://CalculatorService/"">
<a>{0}</a>
<b>{1}</b>
</Add>
</s:Body>
</s:Envelope>", a, b);
}

private int ParseSoapResponse(string response)
{
var soap = XDocument.Parse(response);
XNamespace ns = "http://CalculatorService/";
var result = soap.Descendants(ns + "AddResponse").First().Element(ns + "AddResult").Value;
return Int32.Parse(result);
}

关于c# - HttpClient 和 SOAP (C#),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14336414/

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