active questions tagged error-handling - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T03:48:30Z http://stackoverflow.com/feeds/tag/error-handling http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/222972/wcf-error-logging-at-service-boundary 2 WCF Error Logging at Service Boundary Eric W 2008-10-21T18:39:02Z 2009-12-19T21:31:48Z <p>I'm trying to implement an IErrorHandler in my WCF service in order to log every exception that hits the service boundary before it's passed to the client. I already use IErrorHandlers for translating Exceptions to typed FaultExceptions, which has been very useful. According to the MSDN for IErrorHandler.HandleError(), it's also intended to be used for logging at the boundary. </p> <p>The problem is, the HandleError function isn't guaranteed to be called on the operation thread, so I can't figure out how to get information about what operation triggered the exception. I can get the TargetSite out of the exception itself, but that gives me the interior method instead of the operation. I could also parse through the StackTrace string to figure out where it was thrown, but this seems a little fragile and hokey. Is there any consistent, supported way to get any state information (messages, operationdescription, anything) while in the HandleError function? Or any other ways to automatically log exceptions for service calls?</p> <p>I'm looking for a solution to implement on production, using my existing logging framework, so SvcTraceViewer won't do it for me.</p> <p>Thanks.</p> http://stackoverflow.com/questions/1918624/php-try-and-catch-for-sql-insert 1 PHP Try and Catch for SQL Insert meme 2009-12-16T23:51:57Z 2009-12-19T16:50:19Z <p>I have a page on my website (high traffic) that does an insert on every page load.</p> <p>I am curious of the fastest and safest way to (catch an error) and continue if the system is not able to do the insert into MySQL. Should I use try/catch or die or something else. I want to make sure the insert happens but if for some reason it can't I want the page to continue to load anyway.</p> <pre><code>... $db = mysql_select_db('mobile', $conn); mysql_query("INSERT INTO redirects SET ua_string = '$ua_string'") or die('Error #10'); mysql_close($conn); ... </code></pre> http://stackoverflow.com/questions/672079/binding-application-json-to-poco-object-in-asp-net-mvc-serialization-exception 2 Binding application/json to POCO object in asp.net mvc, Serialization exception DaRKoN_ 2009-03-23T02:41:50Z 2009-12-18T12:36:57Z <p>I'm passing json back up from my view to my controller actions to perform operations. To convert the json being sent in, to a POCO I'm using this Action Filter:</p> <pre><code>public class ObjectFilter : ActionFilterAttribute { public Type RootType { get; set; } public override void OnActionExecuting(ActionExecutingContext filterContext) { IList&lt;ErrorInfo&gt; errors = new List&lt;ErrorInfo&gt;(); try { object o = new DataContractJsonSerializer(RootType).ReadObject(filterContext.HttpContext.Request.InputStream); filterContext.ActionParameters["postdata"] = o; } catch (SerializationException ex) { errors.Add(new ErrorInfo(null, ex.Message)); } finally { filterContext.ActionParameters["errors"] = errors.AsEnumerable(); } </code></pre> <p>}</p> <p>It's using the DataContractJsonSerializer to map the JSON, over to my object. My Action is then decorated like so:</p> <pre><code>[ObjectFilter(RootType = typeof(MyObject))] public JsonResult updateproduct(MyObject postdata, IEnumerable&lt;ErrorInfo&gt; errors) { // check if errors has any in the collection! } </code></pre> <p>So to surmise, what is going on here, if there is a problem serializing the JSON to the type of object (if a string cannot be parsed as a decimal type or similar for eg), it adds the error to a collection and then passes that error up to the view. It can then check if this collection has an errors and report back to the client.</p> <p>The issue is that I cannot seem to find out <em>which</em> field has caused the problem. Ideally I'd like to pass back to the view and say "THIS FIELD" had a problem. The SerializationException class does not seem to offer this sort of flexibility.</p> <p>How would the collective SO hivemind consider tackling this problem?</p> http://stackoverflow.com/questions/1926370/is-it-possible-to-ignore-a-fatal-error-in-php 2 is it possible to ignore a fatal error in PHP? Carson Myers 2009-12-18T04:59:05Z 2009-12-18T06:29:38Z <p>I understand the significance of the term 'fatal error', but I want to write a test class like this (disgustingly simplified):</p> <pre><code>class tester { function execute() { if( @$this-&gt;tryit() === true ) return true; return false; } function tryit() { $doesntexist = new noobject(); return true; } } </code></pre> <p>actually I'd have a <code>Test</code> parent class, and then classes would extend it and contain a bunch of methods with a bunch of tests. The parent class would define <code>execute</code> and it would just run every method in the child class (excluding <code>execute</code> of course) and collecting data on which functions pass and which fail.</p> <p>I want to write tests before I actually write part of my code, but instead of using <code>assert</code> I just want to run <em>every</em> test and generate a list of which functions of which test classes fail. But that means if a test fails it means there was an error -- but I also want to handle instances where I forgot to define a class, etc. Is it possible to do that, while not having the entire script die?</p> <p>I was thinking that the script would just fail up until the function call with the <code>@</code> in front of it, and then continue, but obviously I was wrong. Is there a workaround?</p> http://stackoverflow.com/questions/1922355/php-mysql-error-hook 0 PHP: MySQL error hook? Ricket 2009-12-17T15:08:26Z 2009-12-17T15:14:38Z <p>I've been developing a web application with PHP and MySQL. The other day, I made some changes to the database and adapted one page to the new table layout but not another page. I didn't test well enough, so the site went online with the error still in the other page. It was a simple MySQL error, and once one of my co-workers spotted it, it was a simple fix.</p> <p>Now that it's happened, I'd like to know how I can catch other MySQL errors. I'm thinking about some sort of notification system, that would send me an email when a mysql_query() fails.</p> <p>I understand, of course, that I wouldn't be notified until after the error occurred, but at least I would have been notified immediately, rather than my co-worker come tell me after who-knows-how-many other people had run into the same fatal error.</p> <p><strong>Is there some sort of way to put in a hook, so that PHP automatically runs a function when an error happens? Or do I need to go through my code and add this functionality to every location where I use mysql_query()?</strong></p> <p>If the latter, do you have any recommendations on how to prevent something like this in the future? If this is the case I'll probably create a class to abstract SQL operations. I know I should have been doing this the whole time... But I did organize my sets of functions into different include files, so at least I'm doing most things right. Right?</p> http://stackoverflow.com/questions/1915812/window-onerror-does-not-work 0 window.onerror does not work Josh Stodola 2009-12-16T16:23:09Z 2009-12-16T17:07:04Z <p>I have some tricky AJAX code on a form, and sometimes it will fail (don't ask why, I can't get around it). When this happens, I need to trap the error, reset a hidden field indicator, and submit the form naturally so that the user does not have an unpleasant experience. I planned on using <code>window.onerror</code> to do this, but it is never firing! I am using IE8 and all I have to worry about is the IE browser. Is there some gotcha to getting this event to work? Here's my code...</p> <pre><code>window.onerror = function() { alert("Error!"); document.getElementById("hidAjax").value = "0"; document.forms[0].submit(); } </code></pre> http://stackoverflow.com/questions/1799845/insert-data-ignoring-current-transaction 2 INSERT data ignoring current transaction galets 2009-11-25T20:47:42Z 2009-12-16T06:01:56Z <p>I have a table in my database which essentially serves as a logging destination. I use it with following code pattern in my SQL code:</p> <pre><code>BEGIN TRY ... END TRY BEGIN CATCH INSERT INTO [dbo.errors] (...) VALUES ( ERROR_PROCEDURE(), ERROR_NUMBER(), ERROR_MESSAGE(), ... ) END CATCH </code></pre> <p>To make long story short some of this code must be executing withing a transaction. I'm figuring out that nothing gets written into log, since transaction rollback will roll back the error log entries as well. Anything can be done about it?</p> <p>EDIT: I do know how to get around by doing a rollback/commit before an INSERT to log. My question was, if there is a known way to insert data so that it is unaffected by a transaction in progress. For example: it could be done if I insert it using a separate connection. Only I wanted to find the way to do it inside single SQL statement</p> http://stackoverflow.com/questions/1854302/is-assert-evil 22 Is assert evil? dehmann 2009-12-06T04:04:19Z 2009-12-16T03:15:58Z <p>The <code>Go</code> language creators <a href="http://golang.org/doc/go%5Ffaq.html#Where%5Fis%5Fassert" rel="nofollow">write</a>:</p> <blockquote> <p>Go doesn't provide assertions. (...) Programmers use them as a crutch to avoid thinking about proper error handling and reporting.</p> </blockquote> <p>What is your opinion about this?</p> http://stackoverflow.com/questions/1906208/error-exception-handling-in-oracle 0 error/exception handling in oracle unknown (google) 2009-12-15T09:25:21Z 2009-12-15T21:51:55Z <p>i want to develop a procedure for following scenario. </p> <p>I have one source, one target and one error table. Target and Error tables have all fields that are present in source tables. But the data type of all fields for error table are varchar. Error table don't have integrity, foreign key and other constraints. Error table also have two more fields: Error no and error message. </p> <p>Now when procedure is executed if there is error while inserting any record into target then that record shold be moved to error table. Also the data base error code and error message should be logged in the error tables fields as mentioned. </p> <p>How can i devlop such a procedure?</p> <p>Example of table schema:</p> <pre><code>source table src(id number ,name varchar2(20) , ... ) target table tgt(id number ,name varchar2(20) not null , ... ) error table err (id varchar2(255) ,name varchar2(255) , ... , errno varchar2(255) , errmsg varchar2(255)) </code></pre> http://stackoverflow.com/questions/1908716/choosing-between-application-level-health-monitoring-and-enterprise-application 0 Choosing between Application-Level, Health Monitoring, and Enterprise Application Blocks? Colour Blend 2009-12-15T16:40:55Z 2009-12-15T16:40:55Z <p>I am cut up with three options to handling exceptions in my web application framework. I just decided to enhance it's error handling capability and would love to know which option is best (More people will prefer to use)?</p> <p>The options are:</p> <ul> <li>Application-Level Exception Handling</li> <li>Health Monitoring (From .NET 2.0)</li> <li>Enterprise Application Block</li> </ul> http://stackoverflow.com/questions/1906006/error-reporting-framework-for-net 1 Error-reporting framework for .net martin 2009-12-15T08:41:08Z 2009-12-15T08:53:43Z <p>Hello,</p> <p>is there an error-reporting-framework you would suggest for use in .net. I need possibilities like e-mail-reporting with fileappending to e-mail. The user should have the possibility to add information to the report and also should have the possibility to remove report-files, i.e. if they contains privacy-critical data. There also should be a possibility of taking an automated screenshot. The needed framework should also include error-reporting guis. It should give me the possibility to create own guis for error-reporting.</p> <p>Would be nice if there are any advices,</p> <p>Greetings, Martin</p> http://stackoverflow.com/questions/1901122/how-to-handle-multiple-asynchronous-errors-on-a-single-page 1 How to handle multiple asynchronous errors on a single page? troylar 2009-12-14T14:06:43Z 2009-12-15T01:40:43Z <p>This is not necessarily a Flex-specific question, but I'll use Flex in my example:</p> <p>Scenario: We have a fairly complex MVC Flex application that uses remoting and makes several asynchronous calls on a single page. Some of the calls are:</p> <ul> <li>GetUserOrders</li> <li>GetCurrentOrder</li> <li>GetUserDetails</li> </ul> <p>If there is a network or DB error, this will throw three separate error messages to the user and require three "OK" clicks. We are considering collecting all errors messages in a singleton array and displaying as a list in a common error message box.</p> <p>What are best practices around gracefully handle multiple asynchronous errors on a single page--specifically when we need to alert users that there was an error?</p> http://stackoverflow.com/questions/1900365/redirecting-errors-nicely-without-so-much-copy-paste 1 Redirecting errors nicely without so much copy/paste? Rigsby 2009-12-14T11:27:50Z 2009-12-15T01:07:52Z <p>If I have a view that handles the management of friends, meaning there is a view to handle adding, removing, blocking, unblocking, and accepting/denying invitations to become friends. The problem I have run into is when I try to provide meaningful errors to users who end up at a url they shouldn't be at.</p> <p>For example if <strong>User1</strong> and <strong>User2</strong> are already friends and <strong>User1</strong> goes to the url for adding <strong>User2</strong> as a friend instead of the form being presented as if they weren't friends and the form failing on <code>unique_together = (('user_from', 'user_to'),)</code> it displays a warning message and redirects them to an appropriate page before the form is displayed.</p> <p>Like this</p> <pre><code>def add_friend(request, username): try: user = User.objects.get(username=username) except User.DoesNotExist: messages.error(request, 'A user with the username %s does not exist. \ Try searching for the user below.' % username) return HttpResponseRedirect(reverse('friends_find_friend')) if Friend.objects.are_friends(request.user, user): messages.error(request, 'You are already friends with %s' % user) return HttpResponseRedirect(reverse('profiles_profile_detail', args=[user])) </code></pre> <p>This also includes a check and meaningfull error message (instead of 404) if there is no such user.</p> <p>That is easy to handle but with other checks it grows to</p> <pre><code>def add_friend(request, username): try: user = User.objects.get(username=username) except User.DoesNotExist: messages.error(request, 'A user with the username %s does not exist. \ Try searching for the user below.' % username) return HttpResponseRedirect(reverse('friends_find_friend')) if user == request.user: messages.error(request, 'You are already friends with yourself') return HttpResponseRedirect(reverse('friends_find_friend')) if Enemy.objects.is_blocked(request.user, user): messages.error(request, '%s has blocked you from adding them as a friend' % user) return HttpResponseRedirect(reverse('friends_find_friend')) if Enemy.objects.has_blocked(request.user, user): messages.error(request, 'You have blocked %s so you cannot add them as a friend' % user) return HttpResponseRedirect(reverse('profiles_profile_detail', args=[user])) if Friend.objects.are_friends(request.user, user): messages.error(request, 'You are already friends with %s' % user) return HttpResponseRedirect(reverse('profiles_profile_detail', args=[user])) if FriendRequest.objects.invitation_sent(request.user, user): messages.error(request, 'You already sent %s a request. You need to \ wait for them to reply to it.' % user) return HttpResponseRedirect(reverse('friends_pending')) if FriendRequest.objects.invitation_received(request.user, user): messages.error(request, '%s already sent you a request and is waiting \ for you to respond to them.' % user) return HttpResponseRedirect(reverse('friends_pending')) </code></pre> <p>All of this is duplicated again in</p> <ul> <li>remove_friend</li> <li>block_user</li> <li>unblock_user</li> <li>pending_invitations</li> </ul> <p>And further duplicated as form validation errors in case the view is bypassed in the shell and the form is used independently.</p> <p>What I am asking is if there is a more pythonic way to accomplish this without the excessive copying and pasting?</p> <p><strong>Edit</strong>:</p> <p>I've been trying to solve this and was wondering if something like this would be a good way.</p> <pre><code>tests = ((Enemy.objects.is_blocked, 'This user has blocked you', reverse('friends_find_friend')), (Enemy.objects.has_blocked, 'You have blocked this user', reverse('profiles_profile_detail', args=[user])),) for test in tests: if test[0](request.user, user): messages.error(request, test[1]) return HttpResponseRedirect(test[2]) </code></pre> <p>The tests would be defined in another file similar to url patterns and a decorator would wrap the view function to run over all the tests, redirect if anything fails and finally pass it off to the view function if everything is good. Would this be an effective method way to manage without clogging up the view file with hundreds of lines of boilerplate code?</p> <p><strong>Edit2</strong>: </p> <p>I'm also interested in seeing how others do similar things. I doubt I'm the first person who wants to display a message to the user instead of just throwing a 404 page.</p> http://stackoverflow.com/questions/1900208/php-custom-error-handler-handling-parse-fatal-errors 0 PHP : Custom error handler - handling parse & fatal errors Saiful 2009-12-14T10:57:15Z 2009-12-14T11:08:24Z <p>How can i handle <strong>parse</strong> &amp; <strong>fatal</strong> errors using a <strong>custom</strong> error handler?</p> http://stackoverflow.com/questions/1018496/catch-error-in-gridview-automatic-databinding 0 Catch error in GridView automatic databinding corinutz.mp 2009-06-19T15:09:03Z 2009-12-14T00:00:01Z <p>I have a gridview with a DataSourceID set, so the databinding happens automatically. The problem is that sometimes, the procedure defined in the SqlDataSource takes a very long time to finish, so the binding comes with a timeout expired error.</p> <p>How can I catch this error without manually databinding the gridview and surrounding it with try/catch statements?</p> http://stackoverflow.com/questions/1738785/handling-of-server-side-http-4nn-5nn-errors-in-jquerys-ajax-requests 3 Handling of server-side HTTP 4nn/5nn errors in jQuery's ajax requests BalusC 2009-11-15T20:53:02Z 2009-12-13T13:59:53Z <p>To the point: how would you handle a server-side HTTP 4nn/5nn errors in jQuery's ajax requests? This case concerns a JSP/Servlet webapplication at the server side. Here I am not talking about trivial runtime exceptions such as <code>NullPointerException</code> and so on. Assume that they're all handled perfectly. A good example of such a HTTP 4nn/5nn error is 401 unauthorized (insufficient user rights) and 500 internal server error (database down, I/O error, <a href="http://java.sun.com/javase/6/docs/api/java/lang/Error.html" rel="nofollow"><code>Error</code></a>s, etc). Assume that they cannot (or should not) be caught at coding level.</p> <p>Right now I have just declared an <code>&lt;error-page&gt;</code> in <code>web.xml</code> for those kind of errors. It basically forwards the request to a predefinied JSP/HTML error page wherein the enduser is informed that a serious error has occurred and that the user can contact xx@xx.xx for further assistance. The same page also displays the global details about the error/exception.</p> <p>It works perfectly in regular HTTP requests, but how would you handle it in XMLHtttp requests using jQuery? What's the best for the user experience? To me, it would be just displaying the entire error page as if it is a normal HTTP request. I've solved it as follows:</p> <pre><code>function init() { $.ajaxSetup({ error: handleXhrError }); } function handleXhrError(xhr) { document.open(); document.write(xhr.responseText); document.close(); } </code></pre> <p>Although it works perfectly, it feels to me like a hack. Replacing the entire document with the contents of the HTTP error page. But is that also the way you would follow? If not, can you maybe elaborate why not and what way you'd prefer? The only alternative I see is using JS to display some alert/message box to inform the user about the unresolveable error, but the user <em>could</em> dismiss it and continue with the page while that should not be possible.</p> http://stackoverflow.com/questions/1710327/exceptions-redirect-or-render 0 Exceptions: redirect or render? R_ 2009-11-10T18:56:35Z 2009-12-12T17:00:03Z <p>I'm trying to standardize the way I handle exceptions in my web application (homemade framework) but I'm not certain of the "correct" way to handle various situations. I'm wondering if there is a best practice from UI/ user-friendly point of view.</p> <ol> <li><p>User logs into application and opens two tabs showing the same screen. On one tab they issue a delete command on object <code>FOO</code>. Then, in the other tab they then click the edit command on <code>FOO</code> (which no longer exists); e.g. a GET request for <code>editObject.php?object_id=FOO</code>. What should I do when they issue the edit request for this nonexistent object?</p> <p>-Currently I am redirecting these "missing" objects to the previous page with an error message like "object does not exist".</p></li> <li><p>User issues a GET request to search for Objects with <code>color=Red</code>, e.g. <code>searchObjects.php?color=Red</code>. The query returning these results blew up because somebody dropped the OBJECTS table. This is an unexpected exception and isn't quite the same as 1).</p> <p>-Currently I am redirecting to <code>errorPage.php</code> with a message "Unexpected error"</p></li> <li><p>In general, what should I do if GET/POST parameters that <em>should</em> be there are instead mysteriously missing. Perhaps somebody is trying to inject something?</p> <p>-Currently I am treating these the same as 2)</p></li> </ol> <p><hr></p> <p>What should I be doing in each of the above 3 cases? </p> <ol> <li>Render a "Object does not exist" view at the url <code>editObject.php?object_id=FOO</code></li> <li>Redirect to a controller that displays an error view: <code>header('Location: errorPage.php')</code></li> <li>Serve a 404: not sure of the syntax for doing this in PHP/Apache </li> <li>Other</li> </ol> http://stackoverflow.com/questions/1803812/asp-net-global-asax-applicationerror-works-but-not-when-using-the-error-event 0 ASP.NET Global.asax Application_Error works but not when using the Error event Justin 2009-11-26T13:57:15Z 2009-12-12T16:34:33Z <p>Hi,</p> <p>I've got an ASP.NET MVC application that is supposed to catch all unhandled exceptions within the global.asax application error handler.</p> <p>If I define the handler as follows:</p> <p>protected void Application_Error(object sender, EventArgs e)</p> <p>then it works fine. However, if within the Application_Start event I try and do:</p> <p>this.Error +=new EventHandler(Application_Error);</p> <p>The actual event is never called.</p> <p>Does anyone know why and if so what i'm doing incorrectly?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1892609/outputting-the-exception-from-a-sqlexception-error 1 Outputting the exception from a SQLException error Spanky 2009-12-12T07:01:24Z 2009-12-12T08:20:01Z <p>I have a .aspx page calling a .asmx page's web service. In that .net web service I attempt to open a database connection to SQLServer 2008. The connection is failing. I am not sure why. I am doing this in a try / catch and the catch does get hit when I debug. I'm not sure what I can output there though as I don't have access to the server's filesystem to write a log file.</p> <p>I found this posting:</p> <pre><code>try { SqlCommand cmd = new SqlCommand("raiserror('Manual SQL exception', 16, 1)",DBConn); cmd.ExecuteNonQuery(); } catch (SqlException ex) { string msg = ex.Message; // msg = "Manual SQL exception" } </code></pre> <p>here and it might do the trick for me, but I don't know how to make the msg string output to the page which called this web service? Is there a way to propagate it up the exception chain by having the calling page also implement that same exception handler?</p> <p>Thanks // :)</p> http://stackoverflow.com/questions/1890559/handle-potentially-dangerous-request-form-value 1 Handle "potentially dangerous Request.Form value..." TenaciousImpy 2009-12-11T20:11:18Z 2009-12-11T20:25:41Z <p>Hi, What's the best way to handle errors such as "A potentially dangerous Request.Form value was detected from the client" in ASP.NET? I'd like to keep the validation on, as my forms have no valid reasons to be allowing HTML characters. However, I'm not quite sure how to handle this error in a more friendly manner. I tried handling it in a Page_Error but, as far as I can tell, this occurs in a lower level section so the Page_Error function never fires. Therefore, I may have to resort to using Application_Error in my Global.asax file. If this is the only way of handling that error, is there a way of specifically handling that one error? I don't want to handle all application errors in the same manner. Thanks</p> http://stackoverflow.com/questions/1882283/uniformly-handling-error-codes-in-an-unmanaged-api 4 Uniformly handling error codes in an unmanaged API David Brown 2009-12-10T16:38:01Z 2009-12-11T18:34:43Z <p>I'm writing a wrapper around a fairly large unmanaged API. Almost every imported method returns a common error code when it fails. For now, I'm doing this:</p> <pre><code>ErrorCode result = Api.Method(); if (result != ErrorCode.SUCCESS) { throw Helper.ErrorToException(result); } </code></pre> <p>This works fine. The problem is, I have so many unmanaged method calls that this gets extremely frustrating and repetitive. So, I tried switching to this:</p> <pre><code>public static void ApiCall(Func&lt;ErrorCode&gt; apiMethod) { ErrorCode result = apiMethod(); if (result != ErrorCode.SUCCESS) { throw Helper.ErrorToException(result); } } </code></pre> <p>Which allows me to cut down all of those calls to one line:</p> <pre><code>Helper.ApiCall(() =&gt; Api.Method()); </code></pre> <p>There are two immediate problems with this, however. First, if my unmanaged method makes use of <code>out</code> parameters, I have to initialize the local variables first because the method call is actually in a delegate. I would like to be able to simply declare a <code>out</code> destination without initializing it.</p> <p>Second, if an exception is thrown, I really have no idea where it came from. The debugger jumps into the <code>ApiCall</code> method and the stack trace only shows the method that contains the call to <code>ApiCall</code> rather than the delegate itself. Since I could have many API calls in a single method, this makes debugging difficult.</p> <p>I then thought about using PostSharp to wrap all of the unmanaged calls with the error code check, but I'm not sure how that would be done with <code>extern</code> methods. If it ends up simply creating a wrapper method for each of them, then I would have the same exception problem as with the <code>ApiCall</code> method, right? Plus, how would the debugger know how to show me the site of the thrown exception in my code if it only exists in the compiled assembly?</p> <p>Next, I tried implementing a custom marshaler that would intercept the return value of the API calls and check the error code there. Unfortunately, you can't apply a custom marshaler to return values. But I think that would have been a really clean solution it if had worked.</p> <pre><code>[return: MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef=typeof(ApiMethod))] public static extern ErrorCode Method(); </code></pre> <p>Now I'm completely out of ideas. What are some other ways that I could handle this?</p> http://stackoverflow.com/questions/1882331/in-asp-net-mvc-can-modelstate-be-used-with-an-ajax-update 2 In ASP.Net MVC, can ModelState be used with an ajax update? John 2009-12-10T16:48:51Z 2009-12-11T15:00:18Z <p>This is a follow up to a <a href="http://stackoverflow.com/questions/1750303/in-asp-net-mvc-what-is-the-best-way-to-do-an-update-from-a-dialog">previous question</a> that I had before about passing an error back to the client, but also pertains to the ModelState.</p> <p>Has anyone successful used the Nerd Dinner approach, but with Ajax? So Nerd Dinner does an update as so.</p> <pre><code>[AcceptVerbs(HttpVerbs.Post)] public ActionResult Edit(int id, FormCollection formValues) { Dinner dinner = dinnerRepository.GetDinner(id); try { UpdateModel(dinner); dinnerRepository.Save(); return RedirectToAction("Details", new { id=dinner.DinnerID }); } catch { foreach (var issue in dinner.GetRuleViolations()) { ModelState.AddModelError(issue.PropertyName, issue.ErrorMessage); } return View(dinner); } } </code></pre> <p>Using jQuery $.ajax</p> <pre><code>function hijack(form, callback, errorFunction, format) { $.ajax({ url: form.action, type: form.method, dataType: format, data: $(form).serialize(), success: callback, error: function(xhr, textStatus, errorThrown) { errorFunction(xhr, textStatus, errorThrown); } }); } </code></pre> <p>Ajax, the "try" part of the controller becomes </p> <pre><code> try { UpdateModel(dinner); dinnerRepository.Save(); return PartialView("PartialDetails", new { id=dinner.DinnerID }); } </code></pre> <p>, but what do you do about the catch part? </p> <p>A simple error handling solution to send back an error would be </p> <pre><code>catch(Exception ex) { Response.StatusCode = 500; return Content("An Error occured."); //throw ex; } </code></pre> <p>, but that <i>doesn't pass</i> through the robust modelstate built into MVC. I thought of a number of options, but I really want 2 things:</p> <ol> <li>I want the error to be handled in jQuery's error attribute.</li> <li>I want to use built in ASP.Net MVC validation logic as much as possible.</li> </ol> <p>Is this possible? If not, what are the best alternatives that you know of?</p> <p>Many thanks.</p> http://stackoverflow.com/questions/1887351/logging-errors-on-windows-2003-server-using-the-eventlog-class 0 Logging errors on Windows 2003 Server using the EventLog class roosteronacid 2009-12-11T11:08:18Z 2009-12-11T13:10:06Z <p>I've tried logging errors in my application, using the <code>EventLog</code> class.. But the Event Viewer on Windows 2003 Server is very limited as far as displaying the stuff I log.</p> <p>Here's what I'm doing:</p> <pre><code>if (!EventLog.SourceExists("TestApp.exe")) { EventLog.CreateEventSource("TestApp.exe", "TestApp"); } EventLog.WriteEntry("TestApp.exe", Exception.Message); </code></pre> <p>The entry shows up in the Event Viewer, but I can't seem to find the the exception-message anywhere in the interface.</p> <p>Am I doing something wrong? Or is the Event Viewer in Windows 2003 Server just crap? Are there any alternatives, beyond dumping errors to a text-file?</p> http://stackoverflow.com/questions/1886167/tcp-send-recv-error-reporting 0 TCP send/recv error reporting rohan 2009-12-11T06:21:50Z 2009-12-11T08:21:24Z <p>I have a client/server program (Windows, winsock2) which communicates over TCP. The client connects and sends data to server (using send) in 8K at a time. The server just reads data (using recv).</p> <p>No special settings done on sockets.</p> <p>Problem: When some network error occurs during the communication (e.g. cable pulled out), receiver do not get data successfully sent by that time. To simplify, Client sent 80K data in 10 calls to send. (all sends are successful). 11th send failed because of some network issue. No more data sent after this.</p> <p>Problem is that at receiver, not all 80K data is received. It is always less than 80K.</p> <p>I expect as sender as successfully sent 80K, TCP will guarantee that much data is delivered to destination TCP (data may not be received by application yet, but its in destination TCP buffers).</p> <p>Am I missing anything?</p> <p>Thanks</p> <p>Edit:</p> <p>Sample code</p> <p>Server/receiver</p> <pre><code>/* create socket */ /* listen */ /* accept connection */ char recvbuf[8192]; do { iResult = recv(ClientSocket, recvbuf, sizeof(recvbuf), 0); if (iResult &gt; 0) { total += iResult; printf("Total bytes received: %d\n", total); } else if (iResult == 0) { printf("Connection is closing...\n"); break; } else { printf("recv failed: %d\n", WSAGetLastError()); break; } } while (iResult &gt; 0); </code></pre> <p><hr></p> <p>Client/sender :</p> <pre><code>/* create socket */ /* connect to server */ char sendbuf[8192]; do { // Send an initial buffer iResult = send( ConnectSocket, sendbuf, sizeof(sendbuf), 0 ); if (iResult == SOCKET_ERROR) { printf("send failed: %d\n", WSAGetLastError()); break; } total += iResult; printf("Total bytes Sent: %ld\n", total); } while(iResult &gt; 0); //wait before cleaning up getc(stdin); </code></pre> http://stackoverflow.com/questions/1883803/what-is-idataerrorinfo-and-how-does-it-work-with-wpf 2 What is IDataErrorInfo and how does it work with WPF? sc_ray 2009-12-10T20:30:22Z 2009-12-10T20:37:55Z <p>While working on some custom validators in WPF, one of my co-workers pointed me out the IDataErrorInfo. I have a sample view in XAML that has a textbox and a button. Based on the value in the textbox I would like the button to be either enabled or disabled. My co-worker suggested that extending the IDataErrorInfo in the presentor of my view and writing custom logic for the 'Item' and 'Error' properties would solve my problem. Before I could incorporate this in my code, I thought I should understand how IDataError info works and what is it about implementing this interface that provides the necessary hooks to trigger the custom validation logic? Some help with this concept would be extremely helpful!</p> http://stackoverflow.com/questions/1846086/why-does-ajax-call-for-json-data-trigger-the-error-callback-when-http-status-co 0 Why does $.ajax call for json data trigger the error callback when http status code is "200 OK"? kosoant 2009-12-04T10:22:00Z 2009-12-10T06:14:25Z <p>I have the following ajax request:</p> <pre><code> jQuery.ajax({ async: true, type: "GET", url: url, data: data, dataType: "json", success: function(results){ currentData = results; }, error: function(xhr, ajaxOptions, thrownError){ if (xhr.status == 200) { console.debug("Error code 200"); } else { currentData = {}; displayAjaxError(xhr.status); } } }); </code></pre> <p>For some reason the error callback is called event though the http status code is 200 ie. the request is OK. Why is this?</p> http://stackoverflow.com/questions/871007/exception-handling-in-ajax-calls 0 Exception handling in Ajax Calls. Bogdan Gusiev 2009-05-15T21:49:40Z 2009-12-09T23:00:01Z <p>I have an application utilizing lots of AJAX requests (different actions are triggered via XHR requests). Some of those calls may result in exceptions. Each time I have to display an error message to the user. How can I organize error handling in this case?</p> http://stackoverflow.com/questions/64786/error-handling-in-bash 5 Error handling in BASH Noob 2008-09-15T17:09:59Z 2009-12-09T21:25:01Z <p>What is your favorite method to handle errors in BASH? The best example of handling errors in BASH I have found on the web was written by William Shotts, Jr at <a href="http://www.linuxcommand.org" rel="nofollow">http://www.linuxcommand.org</a>. </p> <p>William Shotts, Jr suggests using the following function for error handling in BASH:</p> <pre><code>#!/bin/bash # A slicker error handling routine # I put a variable in my scripts named PROGNAME which # holds the name of the program being run. You can get this # value from the first item on the command line ($0). # Reference: This was copied from &lt;http://www.linuxcommand.org/wss0150.php&gt; PROGNAME=$(basename $0) function error_exit { # ---------------------------------------------------------------- # Function for exit due to fatal program error # Accepts 1 argument: # string containing descriptive error message # ---------------------------------------------------------------- echo "${PROGNAME}: ${1:-"Unknown Error"}" 1&gt;&amp;2 exit 1 } # Example call of the error_exit function. Note the inclusion # of the LINENO environment variable. It contains the current # line number. echo "Example of error with line number and message" error_exit "$LINENO: An error has occurred." </code></pre> <p>Do you have a better error handling routine that you use in BASH scripts?</p> http://stackoverflow.com/questions/1873490/what-are-some-common-socketexceptions-and-what-is-causing-them 0 What are some common SocketExceptions and what is causing them? Arne Evertsson 2009-12-09T12:05:41Z 2009-12-09T15:38:56Z <p>I've been caught catching SocketExceptions belonging to subspecies like for example <strong>Broken pipe</strong> or <strong>Connection reset</strong>. The question is what to do with the slippery bastards once they're caught.</p> <p>Which ones may I happily ignore and which need further attention? I'm looking for a list of different SocketExceptions and their causes.</p> http://stackoverflow.com/questions/1871882/what-information-should-shouldnt-an-error-page-display-in-a-web-application 1 What information should/shouldn't an error page display in a web application? wgpubs 2009-12-09T06:05:19Z 2009-12-09T06:18:55Z <p>I'm developing a number of error views for an ASP.NET MVC application (a not-found, unknown and general error view) and I'm curious to know how others would answer these questions:</p> <ol> <li><p>What kind of verbage do you include on these pages?</p></li> <li><p>What kind of information do you display to the end user?</p></li> <li><p>What information do you log?</p></li> </ol> <p>I don't think this question is particular to any web application framework so everyone is invited to participate :)</p>