Is there a way to exclude certain submission methods for the JavaScript client? I'm using the WebApi nuget on the Api side so I get detailed exceptions from that, but the JQuery.ajaxError exceptions don't have any message so they just appear as blank exceptions.
It's on self-hosted. In the Exception tab, I get: Occurred On Sep 23, 2015 4:12:32 PM ( an hour ago ) Error Type Unknown Message Submission Method JQuery.ajaxError
I have the event json file, but not sure how to decode it. Also have the relevant lines from the trace log.
So a output from Exceptionless on the server side shows: 2015-09-23 17:25:06.5813|TRACE|EventNotificationsJob|Loaded stack: title=is not a valid value for Int32.
But the javascript that same title= statement is blank. 2015-09-23 17:25:13.7373|TRACE|EventNotificationsJob|Loaded stack: title=
@frankebersoll, @theit8514 I’m going to be heading out here in a bit for dinner and the gym. If I don’t respond, just leave a message in here and I’ll get back to you.
I had to step away for a call. I attempted to post the json data using I'm Only Resting but I think I'm doing it wrong because it shows up as a log message.
Ok, yes, I have the json correctly uploading now. It still shows title= with nothing after it.
So one thing I'm noticing is that the one coming from the application has a @error.message: "@error":{"message":"is not a valid value for Int32.","type":"System.Exception" The one from the Javascript just has an empty stack trace: "@error":{"stack_trace":[]}
The jQuery.ajaxError 4th parameter is a string value, not an exception, and it's getting passed to createUnhandledException. It either needs to be wrapped in a new exception or something like that.