使用C#消费SOAP / SSO

时间:2014-05-27 12:21:36

标签: c# .net soap single-sign-on

使用C#消费WSDL SOAP / SSO的最简单方法是什么?

这是第三方系统,我得到了这样的答复:

HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <RetornaEstadosPorMarcaResponse xmlns="http://WebService-MultiLogin-2013/">
      <RetornaEstadosPorMarcaResult>
        <EstadosMDL>
          <ID>int</ID>
          <Nome>string</Nome>
          <Sigla>string</Sigla>
        </EstadosMDL>
        <EstadosMDL>
          <ID>int</ID>
          <Nome>string</Nome>
          <Sigla>string</Sigla>
        </EstadosMDL>
      </RetornaEstadosPorMarcaResult>
    </RetornaEstadosPorMarcaResponse>
  </soap:Body>
</soap:Envelope>

这就是我所说的:

public AdminMaster.RetornaEstadosPorMarca.Estados ssoEstados = new AdminMaster.RetornaEstadosPorMarca.Estados();

ssoEstados.RetornaEstadosPorMarca(Library.Configuracoes.ChaveSSO, Convert.ToInt16(Library.Configuracoes.Marca));

我已经尝试将其作为字符串接收并将其格式化为用作XML但由于<soap:Body><soap:Envelope>而无效,我收到错误,因为我有': '在名字上,我不认为这是最简单的方法。

那么,我如何从响应中访问信息?还有另一种方式吗?

编辑:

经过几个小时的测试后我终于找到了问题,“我的”SOAP还给了我一个类来创建一个接收响应的对象,我只需要使用它:

//Here i have the object with the methods
private Library.ssoEstados.Estados objEstadosSSO = new Library.ssoEstados.Estados();

//Here i have the object to receive the response    
private Library.ssoEstados.EstadosMDL[] objEstadosMDL;

只是阅读我想要的值并将其发送到我自己的对象。

1 个答案:

答案 0 :(得分:-1)

XmlDocument xDoc = new XmlDocument();
xDoc.LoadXml(inputXml);
XmlNamespaceManager namespaces = new XmlNamespaceManager(xDoc.NameTable);
namespaces.AddNamespace("soapenv", "http://schemas.xmlsoap.org/soap/envelope/");
namespaces.AddNamespace("ns2", "http://tempuri.org/");
XmlNode accountNode = xDoc.SelectSingleNode("/soapenv:Envelope/soapenv:Body/ns2:RetornaEstadosPorMarcaResponse/RetornaEstadosPorMarcaResult", namespaces);
XmlNode xnlAccount = accountNode.ChildNodes[0];
if (xnlAccount != null)
{
    XmlDocument xAccount = new XmlDocument();
    xAccount.LoadXml(xnlAccount.InnerText);
}

inputXml是一个包含你的响应xml的字符串。