I have a two x509 certificates, one for credentials and second for using to signing wcf service, server is java. I write code like this
System.Net.ServicePointManager.SecurityProtocol = System.Net.SecurityProtocolType.Ssl3;
AuthenticationService client = new AuthenticationService();
var store = new X509Store(StoreName.My,
StoreLocation.CurrentUser);
store.Open(OpenFlags.ReadOnly);
X509Certificate2 certificate = store.Certificates[0];
X509Certificate2 certificatesign = store.Certificates[1];
var messageSignature = new MessageSignature();
messageSignature.SigningToken =new Microsoft.Web.Services3.Security.Tokens.X509SecurityToken(certificatesign);
client.RequestSoapContext.Security.Elements.Add(messageSignature);
client.ClientCertificates.Add(certificate);
client.authenticate(new Passport4.reqAuthenticate_CT {userId = "es_user_01"});
and getting error , "An internal WS-security error occurded. See log for details " this text from java server. I think need to set some algorithms like messageSignature.Signature.SignedInfo.SignatureMethod = "http://www.w3.org/2000/09/xmldsig#rsa-sha1";