我有一个远程托管的 XML SOAP 消息,我需要在我的 ASP.NET MVC C# Web 应用程序中读取它。我对上述所有技术都是新手,所以请放轻松。
- 如何连接到数据源
- 如何创建模型来对 SOAP 消息进行建模
- 我需要什么 LinQ 查询才能将“GetMetalQuoteResult”的内容转换为 C# 对象?例如,访问soap 消息响应的各个元素。
下图。
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<GetMetalQuoteResponse xmlns="http://.../...">
<GetMetalQuoteResult>
<Type>string</Type>
<Currency>string</Currency>
<Date>Date</Date>
<Time>Time</Time>
<Rate>decimal</Rate>
<Bid>decimal</Bid>
<BidTime>Time</BidTime>
<ExpTime>DateTime</ExpTime>
<DisplayTime>Time</DisplayTime>
<DisplayDate>Date</DisplayDate>
<Ask>Decimal</Ask>
<AskTime>Time</AskTime>
</GetMetalQuoteResult>
</GetMetalQuoteResponse>
</soap:Body>
</soap:Envelope>
目前,我的控制器中有以下代码。
var xml = XElement.Load(url);
System.Diagnostics.Debug.WriteLine("");
foreach (XElement x in xml.Nodes())
{
System.Diagnostics.Debug.WriteLine(x.Name + ":\n"+ x.Value);
}
System.Diagnostics.Debug.WriteLine("");
但这只是返回以下内容:
{http://schemas.xmlsoap.org/soap/envelope/}
Body:XAUGBP5/22/201212:21:04 PM1000.86251000.862512:21:04 PM2012 May 22 12:21 PM BST1:21:04 PM EDT05/22/121001.249412:21:04 PM
我需要它在单独的行上返回:
Type: XAU
Currency: GBP
Date: 5/22/201212:21:04
....
....
在此先感谢您的帮助。