2013-08-05 30 views
5

Mi è stato fornito un file .p12 per connettersi a un servizio Web su SSL utilizzando l'autenticazione del certificato client. Ho questo funziona correttamente in PHP, usando cURL. Queste sono le opzioni che sto usando quando eseguire la richiesta:Connessione a un servizio Web utilizzando l'autenticazione del certificato client

$headers = array(
    'Method: POST', 
    'Connection: Keep-Alive', 
    'User-Agent: PHP-SOAP-CURL', 
    'Content-Type: text/xml; charset=utf-8', 
    'SOAPAction: "'.$action.'"', 
); 

$ch = curl_init(); 

curl_setopt($ch, CURLOPT_URL, $location); 
curl_setopt($ch, CURLOPT_POST, 1); 
curl_setopt($ch, CURLOPT_POSTFIELDS, $request); 
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); 
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE); 
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE); 
curl_setopt($ch, CURLOPT_FAILONERROR, 1); 
curl_setopt($ch, CURLOPT_SSLCERT, $this->clientcert); 
curl_setopt($ch, CURLOPT_SSLKEYTYPE, $this->clientcerttype); 
curl_setopt($ch, CURLOPT_SSLKEY, $this->keyfile); 
curl_setopt($ch, CURLOPT_SSLKEYPASSWD, $this->keypassword); 
curl_setopt($ch, CURLOPT_SSLVERSION, 3); 

$response = curl_exec($ch); 

Ora sto cercando di fare la stessa operazione utilizzando C# e .NET, ma continuo a ricevere l'errore "Impossibile stabilire un canale sicuro per SSL/TLS con autorizzazione ':'. ".

Non sembra che si sia verificato un problema con l'individuazione della chiave e non sembrano esserci problemi di attendibilità. Tuttavia, qualcosa non è giusto, da qualche parte lungo la linea.

Ho creato un programma di test, solo così posso verificare che una chiamata di base funzionerà.

public void StartviaWSHttp() 
{ 
    var binding = new WSHttpBinding(); 
    binding.Security.Mode = SecurityMode.Transport; 
    binding.Security.Transport.ClientCredentialType = HttpClientCredentialType.None; 
    binding.Security.Message.NegotiateServiceCredential = false; 
    binding.Security.Message.ClientCredentialType = MessageCredentialType.None; 

    var baseAddress = new Uri("https://<host>:<port>/LineEndpoint1"); 
    var endpointAddress = new EndpointAddress(baseAddress); 

    var client = new LinePortTypeClient(binding, endpointAddress); 

    client.ClientCredentials.ClientCertificate.SetCertificate(StoreLocation.CurrentUser, StoreName.My, X509FindType.FindBySerialNumber, "00d48a233bf4b77523"); 

    Debug.Assert(client.ClientCredentials.ClientCertificate.Certificate.SerialNumber.ToLower() == "00d48a233bf4b77523"); 

    var header = new ctSoapHeaderMsg(); 
    var response = new object(); 
    client.Open(); 
    var responseCode = client.PerformFunction(ref header, "0893411111", out response); 
    client.Close(); 

    Console.WriteLine("Response Code :" + responseCode); 
    Console.WriteLine("Response :" + response); 
} 

Quando osservo il certificato nel personal/Certificati per l'utente corrente, ma non segnalare eventuali problemi, per quanto riguarda fiducia. Nelle informazioni del certificato, indica che il certificato è destinato ai seguenti scopi: Tutte le politiche di rilascio e tutte le politiche applicative. Il percorso di certificazione ha solo una voce e lo stato del certificato riporta che "Questo certificato è OK".

Sono in perdita per qual è il problema. Forse c'è un problema di fiducia, dal momento che ho la verifica PEER e HOST disattivata per la chiamata PHP. Non sono sicuro che sia un'opzione per C#.


aggiornamento: (9 agosto 2013) Ho messo su un po 'di analisi dettagliata per System.Net e System.Net.Socket. Questo è l'inizio dell'output.

System.Net Verbose: 0 : [16124] WebRequest::Create(https://dsl-wholesale-testing.iinet.net.au:50500/LineEndpoint1) 
System.Net Verbose: 0 : [16124] HttpWebRequest#58508234::HttpWebRequest(https://dsl-wholesale-testing.iinet.net.au:50500/LineEndpoint1#128335743) 
System.Net Information: 0 : [16124] Current OS installation type is 'Client'. 
System.Net Information: 0 : [16124] RAS supported: True 
System.Net Verbose: 0 : [16124] Exiting HttpWebRequest#58508234::HttpWebRequest() 
System.Net Verbose: 0 : [16124] Exiting WebRequest::Create() -> HttpWebRequest#58508234 
System.Net Verbose: 0 : [16124] ServicePoint#36898364::ServicePoint(dsl-wholesale-testing.iinet.net.au:50500) 
System.Net Information: 0 : [16124] Associating HttpWebRequest#58508234 with ServicePoint#36898364 
System.Net Verbose: 0 : [16124] HttpWebRequest#58508234::GetRequestStream() 
System.Net Information: 0 : [16124] Associating Connection#47995487 with HttpWebRequest#58508234 
System.Net.Sockets Verbose: 0 : [16124] Socket#31002555::Socket(AddressFamily#2) 
System.Net.Sockets Verbose: 0 : [16124] Exiting Socket#31002555::Socket() 
System.Net.Sockets Verbose: 0 : [16124] Socket#6243847::Socket(AddressFamily#23) 
System.Net.Sockets Verbose: 0 : [16124] Exiting Socket#6243847::Socket() 
System.Net.Sockets Verbose: 0 : [16124] DNS::TryInternalResolve(dsl-wholesale-testing.iinet.net.au) 
System.Net.Sockets Verbose: 0 : [16124] Socket#31002555::Connect(203.173.51.130:50500#-2110560113) 
System.Net.Sockets Information: 0 : [16124] Socket#31002555 - Created connection from 192.168.190.202:55397 to 203.173.51.130:50500. 
System.Net.Sockets Verbose: 0 : [16124] Exiting Socket#31002555::Connect() 
System.Net.Sockets Verbose: 0 : [16124] Socket#6243847::Close() 
System.Net.Sockets Verbose: 0 : [16124] Socket#6243847::Dispose() 
System.Net.Sockets Verbose: 0 : [16124] Exiting Socket#6243847::Close() 
System.Net Information: 0 : [16124] Connection#47995487 - Created connection from 192.168.190.202:55397 to 203.173.51.130:50500. 
System.Net Information: 0 : [16124] TlsStream#29695768::.ctor(host=dsl-wholesale-testing.iinet.net.au, #certs=0) 
System.Net Information: 0 : [16124] Associating HttpWebRequest#58508234 with ConnectStream#25001628 
System.Net Verbose: 0 : [16124] Exiting HttpWebRequest#58508234::GetRequestStream()  -> ConnectStream#25001628 
System.Net Verbose: 0 : [16124] ConnectStream#25001628::Write() 
System.Net Verbose: 0 : [16124] Data from ConnectStream#25001628::Write 
System.Net Verbose: 0 : [16124] (printing 1024 out of 1206) 
System.Net Verbose: 0 : [16124] 00000000 : 3C 73 3A 45 6E 76 65 6C-6F 70 65 20 78 6D 6C 6E : <s:Envelope xmln 

La linea System.Net Information: 0 : [16124] TlsStream#29695768::.ctor(host=dsl-wholesale-testing.iinet.net.au, #certs=0) suggerisce che non certificati sono stati prelevati per l'uso, anche se ho allegato il certificato al client.ClientCredentials.ClientCertificate, ma non sono sicuro perché questo sta accadendo o come fallo attaccare. Qualche proprietà del certificato deve corrispondere al nome host a cui mi sto connettendo?

risposta

4

Sembra che il server non abbia compreso TLS.

ho dovuto specificare SSLv3, tramite

System.Net.ServicePointManager.SecurityProtocol = System.Net.SecurityProtocolType.Ssl3; 
+0

Interessante. Ricevo esattamente lo stesso errore con lo stesso codice esatto e lo stesso certificato TLS # 0 nella traccia, ma so per certo che il server supporta TLS 1.2. Sono alla fine del mio spirito. – ajeh

+0

System.Net.ServicePointManager.SecurityProtocol è un flag, quindi è possibile specificare ulteriori SecurityProtocolTypes tramite un OR bit a bit. Se hai solo Ssl13, qualsiasi cosa verrà ignorata (supponendo che tu stia facendo riferimento al codice C#, e non a PHP Curl). – Reuben

+1

L'elemento di sicurezza dell'associazione del servizio Web richiedeva un elemento aggiuntivo '' che mancava. Aggiunti e tutto ha funzionato. – ajeh

0

Come @ajeh accennato nei commenti "trasporto clientCredentialType = ..." ha lavorato per me!

<binding name="....."> 
    <security mode="Transport" > 
     <transport clientCredentialType="Certificate"></transport> 
    </security> 
</binding> 

Inoltre, è necessario assicurarsi che l'utente del pool di applicazioni IIS disponga dell'autorizzazione per leggere la chiave privata del certificato.

Problemi correlati