You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While testing out the example project, after placing a test order I'm seeing the order data displayed in XML format in the web browser view, rather than seeing the expected order completion message (as seen in the screenshot).
This issue seems to be confined to the .NET/C# SDK, since testing with the Mac SDK shows no such issue.
My development environment is Windows 7 with Visual Studio Community 2013.
The text was updated successfully, but these errors were encountered:
The issue is due to the .xml file type having an association with Safari on my machine. The aMimetype is always returning "Safari Document" which causes the xml check to be skipped and the xml content is displayed instead.
Adding an extra xml check for the string <?xml version=" in doc.body.innerText is sufficient to solve the problem. I'm not sure if this will cause other issues, but I'll be using this as a workaround meanwhile until there's an official patch.
While testing out the example project, after placing a test order I'm seeing the order data displayed in XML format in the web browser view, rather than seeing the expected order completion message (as seen in the screenshot).
This issue seems to be confined to the .NET/C# SDK, since testing with the Mac SDK shows no such issue.
My development environment is Windows 7 with Visual Studio Community 2013.
The text was updated successfully, but these errors were encountered: