10

I have searched high and low looking for a simple class or set of functions to encode and decode the content type 'application/soap+msbin1'

My end goal is to be able to use HttpWebRequest and HttpWebResponse to interact with a webserver running a silverlight application.

Any samples or examples of either of the two items above are greatly appreciated.

MysticMagicϡ
  • 28,593
  • 16
  • 73
  • 124
jroberts
  • 449
  • 1
  • 5
  • 13

1 Answers1

12

I was able to view the data with fiddler2

http://fiddler2.com/fiddler2/version.asp

using the fiddler extension

http://archive.msdn.microsoft.com/wcfbinaryinspector

and encode/decode the data with

https://github.com/GDSSecurity/WCF-Binary-SOAP-Plug-In/blob/master/burp_wcf_plugin/src/NBFS.cs

jroberts
  • 449
  • 1
  • 5
  • 13
  • 6
    For anyone else looking for this Fiddler extension, it can be found here: https://github.com/waf/WCF-Binary-Message-Inspector -- the one in this answer is 404. – Alex Jun 02 '15 at 08:45