簡體   English   中英

如何為第三方Web服務創建特定的SOAP標頭

[英]How to create a specific SOAP header for a third-party web service

我正在嘗試連接到第三方Web服務。 我試圖以多種方式做到這一點,但我一直做不到。 他們將Java用於服務和客戶端,並向我發送了正確的標頭:

<soapenv:Header>
<wsse:Security xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
    <ds:Signature Id="SIG-DF651A72BB4BD472F5149301750204095" xmlns:ds="http://www.w3.org/2000/09/xmldsig#">
        <ds:SignedInfo>
            <ds:CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#">
                <ec:InclusiveNamespaces PrefixList="doc soapenv web" xmlns:ec="http://www.w3.org/2001/10/xml-exc-c14n#"/>
            </ds:CanonicalizationMethod>
            <ds:SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha1"/>
            <ds:Reference URI="#id-DF651A72BB4BD472F5149301750203994">
                <ds:Transforms>
                    <ds:Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#">
                        <ec:InclusiveNamespaces PrefixList="doc web" xmlns:ec="http://www.w3.org/2001/10/xml-exc-c14n#"/>
                    </ds:Transform>
                </ds:Transforms>
                <ds:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"/>
                <ds:DigestValue>iITj5pTonO3g052LVSnea1yZd0Q=</ds:DigestValue>
            </ds:Reference>
        </ds:SignedInfo>
        <ds:SignatureValue>DhsMfNnidlHk7QIRAWBrr44T6nMLLG00AN/1jnZSlV7pbrMZ3V/MrvW1S5hzQYGQXRH1U1bqzCw8wF2nGtizDtagWGR9UfBoq+wvFBktQy6f7B91DbN++q03a28i2iiSxiEOVWaCvZzCmwOOLdOIIvaD8c8YsJAIgzB+wGg1s6d14+0rk4zAEQrtu7hWvOtU3s6aKIMrX9JiP+1qVInI4RPWynZ9pIbB87vaZSMHsqkjexxKMBB7v5sZugDjl2gPsJeE4dbtC8pXrfZ4QhQ+HSsEYvMJ90J8zyoG2gLuOeCrcQDBe6RrdwpP20r2sTFMKpy2ADZnl1LkwbadvLvnQ==</ds:SignatureValue>
        <ds:KeyInfo Id="KI-DF651A72BB4BD472F5149301750203992">
            <wsse:SecurityTokenReference wsu:Id="STR-DF651A72BB4BD472F5149301750203993">
                <ds:X509Data>
                    <ds:X509IssuerSerial>
                        <ds:X509IssuerName>OU=yyy,O=xxx,C=ES</ds:X509IssuerName>
                        <ds:X509SerialNumber>a very long integer here</ds:X509SerialNumber>
                    </ds:X509IssuerSerial>
                </ds:X509Data>
            </wsse:SecurityTokenReference>
        </ds:KeyInfo>
    </ds:Signature>
</wsse:Security>
</soapenv:Header>

我嘗試了不同的綁定,像這樣:

        <basicHttpBinding>
            <binding name="GInsideCertificateWSSoapBinding"  >
              <security mode="TransportWithMessageCredential"    >
                <message clientCredentialType="Certificate"  />
              </security>
            </binding>
         </basicHttpBinding>

還有這個:

      <customBinding>
        <binding name="CustomSoapBinding">
          <security includeTimestamp="true"
                    authenticationMode="CertificateOverTransport"
                    defaultAlgorithmSuite="Basic256"
                    requireDerivedKeys="false"
                    messageSecurityVersion="WSSecurity11WSTrust13WSSecureConversation13WSSecurityPolicy12BasicSecurityProfile10"
                    >
          </security>
          <textMessageEncoding messageVersion="Soap11"></textMessageEncoding>
          <httpsTransport maxReceivedMessageSize="2000000000"/>
        </binding>
      </customBinding>

我還嘗試了以下代碼: https : //msdn.microsoft.com/en-us/library/microsoft.web.services2.security.tokens.binarysecuritytoken.aspx

但是沒有人會像他們發送給我的那樣生成標頭。 實施什么樣的安全性? 他們告訴我BinarySecurityToken,但是我還是無法連接到該服務。

有任何想法嗎?

您需要在調用之前加載X509Certificate2 ,如下所示:

X509Certificate2 certificat = null;
X509Store store = new X509Store("My", StoreLocation.LocalMachine);
store.Open(OpenFlags.ReadOnly | OpenFlags.OpenExistingOnly);
foreach (X509Certificate2 cert in store.Certificates) {
    // Retrouve le certificat par son nom commun (CN)
    if (cert.GetNameInfo(X509NameType.SimpleName, false) == nomCertificat) {
        certificat = cert;
        break; 
    }
}

但是提供C#代碼以查看更多詳細信息。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM