Hello, I am to translate a soap client application from java to C#. The application sends soap message using 2 security files,which are inserted as:
System.setProperty("javax.net.ssl.keyStore",path1) System.setProperty("javax.net.ssl.keyStorePassword",password1) System.setProperty("javax.net.ssl.trustStore",path2) System.setProperty("javax.net.ssl.trustStorePassword",password2) in java.
I looked in wse 3.0 but it only has cer .509 related classes. Without these files server generates authentification error in response. How do I send a soap message in C# using these files.