2
Answers

Soap Message Signing

Hi All

Good Day!

I am working on sending one soap request to a server. I have added the service reference of the WSDL provided. I have to make client authentication and message signing before the message send to the server. I have done the client authentication, kindly help me to provide how the message signing can be done while passing an object to the wsdl generated class.
 
ServiceReference1.Purchaseclass proxy = new ServiceReference1.Purchaseclass();
ServiceReference1.getSuppliersRequest obj = new ServiceReference1.getSuppliersRequest();
obj.companyId = "345";
ServiceReference1.getSuppliersResponse response = new ServiceReference1.getSuppliersResponse();
ServicePointManager.Expect100Continue = true;
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls; proxy.ClientCredentials.ClientCertificate.SetCertificate(StoreLocation.LocalMachine, StoreName.My, X509FindType.FindBySubjectDistinguishedName, "‎test.mshq-client");
((BasicHttpBinding)proxy.Endpoint.Binding).Security.Mode = BasicHttpSecurityMode.Transport;
((BasicHttpBinding)proxy.Endpoint.Binding).Security.Transport.ClientCredentialType = HttpClientCredentialType.Certificate;

// Then i have to make the message sign before calling the request to the API

response = proxy.GetSuppliers(obj); 
Answers (2)
0
Gokhul Varman

Gokhul Varman

NA 10.7k 9.4k 7y
Please refer the following links to get a solution:https://dzone.com/articles/signing-soap-messages
https://www.ibm.com/support/knowledgecenter/en/SSGMCP_5.1.0/com.ibm.cics.ts.webservices.doc/wsSecurity/dfhws_soapmsg_signed.html 
0
Manikandan Murugesan

Manikandan Murugesan

NA 20.5k 98.9k 7y
Refer the following Link : https://msdn.microsoft.com/en-us/library/ms824699.aspx
 
https://www.ibm.com/support/knowledgecenter/en/SSGMCP_5.2.0/com.ibm.cics.ts.webservices.doc/wsSecurity/dfhws_soapsigning.html