Sometimes, we want to make a service available in different protocols so that clients could have an option to choose one of their favorite methods to consume the web services.
Here we are going to talk about how to make one WCF service available in RESTful POX(Plain Old XML as XML for short), JSON and [...]
Continue reading about WCF RESTful POX, JSON and SOAP Coexist
Using ServiceCapture, Ethereal, Charles or some SOAP sniffer software to inspect the XML sent on wire.
Here is XML snippet in the SOAP header.
<wsse:usernametoken wsu:id=”….” xmlns:wsu=”….”>
<wsse:username>xxxxxx</wsse:username>
<wsse:password type=”….”>
fCQCp/A9wFD/Gku0L+yF/u+0leg=
</wsse:password>
<wsse:nonce>eSM7S/iT0KyA39vuWPQcPQ==</wsse:nonce>
<wsu:created>1975-12-01T05:28:36Z</wsu:created>
</wsse:usernametoken>
[STAThread]
static void Main()
{
List<string> wordList = new List<string>();
//Load your word list here [...]
Continue reading about WSE UsernameToken Password SendHashed - Crack