You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
wcf.js uses ws.js which uses xml-crypto. see this thread in xml-crypto, either you can use it directly or do some monkey patch where applies: node-saml/xml-crypto#45
I've been trying to replicate WCF calls from ASP.NET to Nodejs with some configurations like below:
Web.config
< binding name="SamplePortSOAPBinding1" messageEncoding="Mtom" >
< security mode="TransportWithMessageCredential" >
< message clientCredentialType="Certificate" />
</ security >
</ binding >
As basicHttpBinding
C# Code
client.ClientCredentials.ClientCertificate.Certificate = new X509Certificate2(pfxFilePath, privateKeyPassword);
I do not find any place where i could put the password.
Can you guide me if it is possible to use password ?
Thanks,
The text was updated successfully, but these errors were encountered: