Thats my question, I'm catching a few WCF exceptions on my client and the ProtocolException always has html code in its message.
Could I assume that will happen every time? For what I see the real good message comes in the inner exception, could I just discard the ProtocolException message and show the user the message from the inner exception?
相关问题
- How to make a .svc file write to asp.net Trace.axd
- WCF Service Using Client Certificates Requires Ano
- How to deploy python flask application in conda ba
- WCF error with net.tcp "The service endpoint faile
- WCF Service Reference Support Files Not Updating
No, it doesn't always contain HTML in the message. Generally if there is HTML it's because the server your talking with (or through) hasn't understood (or blocked) the request, and has replied with an HTML explanation as to why. The message is useful for figuring out the problem.
Unfortunately that isn't the only time you'll see ProtocolExceptions, so you can't assume it will always contain HTML.