How do I get the raw response string returned from the .NET SDK? I'm
guessing it would come from the controller, but I can't find where the
string is exposed. It needs to be logged so we can get help with a
failing transaction from support.Thanks
For anyone else that comes along later, the .NET SDK uses
System.Diagnostic.Tracing to write the response string. So you can add
the following to your .config file and get the raw response string
written to a log file.
For anyone coming after, here is a C# function to get the token: public
static string GetHostedSessionKey(UInt32 customerProfileID, Uri
callingPage) { try { //build a path to IframeCommunicator from the
calling page string communicatorPath = String.F...