c# - How Do I debug a fault exception -


how debug faultexception

i getting

<?xml version="1.0" encoding="utf-8"?> <env:envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/">  <env:body>  <env:fault>   <faultcode>env:client</faultcode>   <faultstring>rejected policy. (from client)</faultstring>   </env:fault>  </env:body> </env:envelope> 

the documentation provided says because of missing,invalid user id or credentials fault encountered when user id or password not specified or incorrect within data-stream

i giving correct password, userid. because of invalid usernametoken or x509 certificate.

i start configuring tracing on server. verbose traces might give clue what's happening.


Comments

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -