Tagged Questions

1
vote
3answers
26 views

Handle “potentially dangerous Request.Form value…”

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 …
0
votes
2answers
21 views

Logging errors on Windows 2003 Server using the EventLog class

I've tried logging errors in my application, using the EventLog class.. But the Event Viewer on Windows 2003 Server is very limited as far as displaying the stuff I log. Here's what I'm doing: if …
0
votes
2answers
30 views

TCP send/recv error reporting

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). No …
2
votes
1answer
26 views

What is IDataErrorInfo and how does it work with WPF?

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 …
2
votes
1answer
47 views

In ASP.Net MVC, can ModelState be used with an ajax update?

This is a follow up to a previous question that I had before about passing an error back to the client, but also pertains to the ModelState. Has anyone successful used the Nerd Dinner approach, but …
4
votes
6answers
65 views

Uniformly handling error codes in an unmanaged API

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: ErrorCode result = Api.Method(); if (result …
0
votes
2answers
44 views

What are some common SocketExceptions and what is causing them?

I've been caught catching SocketExceptions belonging to subspecies like for example Broken pipe or Connection reset. The question is what to do with the slippery bastards once they're caught. Which …
1
vote
6answers
37 views

What information should/shouldn’t an error page display in a web application?

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: What kind of …
1
vote
3answers
30 views

JQuery error property for error handler

Hello all, I'm just playing around for the first time with jQuery's ajax functionality. I wanted to add a function that could handle any errors. So, in one of my client javascript blocks, I added the …
2
votes
3answers
25 views

Alternative to returning mixed errors and booleans.

I have a (common) situation where I am currently returning a result that is a mixed type, sometimes a boolean, sometimes an error message. For example: function checked_thing_is_legal(){ // Do …
0
votes
1answer
30 views

Custom Error Handling in ASP.NET MVC

I've tried implementing the answer listed here: Properly handling 404s which came from this blog post: Real World Error Handling All I get is a blank page. I step through the debugger and I see the …
2
votes
3answers
139 views

How to catch this error? [C++]

Hi, I'm trying to catch dividing by zero attempt: int _tmain(int argc, _TCHAR* argv[]) { int a = 5; try { int b = a / 0; } catch(const exception& e) { cerr << e.what(); } catch(...) { …
0
votes
2answers
54 views

Can I rollback Dynamic SQL in MSSQL / TSQL

Can I run a dynamic sql in a transaction and roll back using EXEC: exec('SELECT * FROM TableA; SELECT * FROM TableB;'); Put this in a Transaction and use the @@error after the exec statement to do …
18
votes
17answers
1k views

Is assert evil?

The Go language creators write: Go doesn't provide assertions. (...) Programmers use them as a crutch to avoid thinking about proper error handling and reporting. What is your opinion about …
2
votes
6answers
103 views

c++: Operator overloading and error handling

Hi, I am currently starting to look into operator overloading in c++ for a simple 2D vertex class where the position should be available with the [] operator. That generally works, but I dont really …

1 2 3 4 5 40 next
15 30 50 per page