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";

link|improve this question

45% accept rate
You are not using WCF but WSE3. – Ladislav Mrnka Nov 15 '11 at 13:10
thanks......... – Armen Khachatryan Nov 15 '11 at 14:08
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.