Tagged Questions
The handling tag has no wiki summary.
12
votes
6answers
163 views
Can you catch a Exception<T> Where T is any type?
I want to be able to catch a WebFaultException< string > as the most specific then a WebFaultException< T > (T being any other type) as a more general case to handle. Is this possible?
...
12
votes
9answers
10k views
Bounce Email handling with PHP?
I am really new to this (not new to php).
Here is my scenario:
I have 2 emails accounts. admin@domain.com and bounce@domain.com.
I want to send email to all my users with admin@domain.com but then ...
10
votes
6answers
278 views
When _exactly_ are events executed in C#
I have developed a C# application which makes heavy use of events. Now this application is occasionally doing funny things that I cannot understand or track down to a specific cause why they should ...
8
votes
9answers
540 views
Whats the right approach for error handling in C++
One is to use C++ exceptions: try catch blocks. But freeing dynamic memory will be an issue when an exception is raised.
Second is to use C style: errno variable
Third is just to return -1 on error ...
7
votes
3answers
2k views
Reverse massive text file in Java
What would be the best approach to reverse a large text file that is uploaded asynchronously to a servlet that reverses this file in a scalable and efficient way?
text file can be massive (gigabytes ...
6
votes
2answers
423 views
Unhandled Exception error from a callback c#
I have a 3 tier architecture and send some data in the transport layer (TCP Client) using tcp sockets is this methods asynchronously using BeginSend method.
public void TransportData(Stream stream)
{
...
6
votes
7answers
874 views
Preventing Windows shut down
To detect and prevent shutdown the computer I use very simple program. It has only one form and one private procedure like below:
TForm3 = class(TForm)
private
procedure WMQueryEndSession(var Msg : ...
5
votes
8answers
422 views
Exception handling within an Exception in C#
i know this could be a little weird but a doubt is a doubt afterall...
what would happen in the following situation...
private void SendMail()
{
try
{
//i try to send a mail and it ...
4
votes
5answers
646 views
Handling entities in a game - C++
As a small excersize I am trying to write a very small, simple game engine that just handles entities (moving, basic AI etc.)
As such, I am trying to think about how a game handles the updates for ...
4
votes
4answers
143 views
What's the cleanest way to fail gracefully when a file can't be opened in C++?
The program requires the file to run, but if for any myriad number of reasons it can't be found or isn't readable, etc - what's the cleanest way to fail out of the program?
4
votes
1answer
549 views
c# exception handling on background threads using Thread pool
The application I am working on uses thread pool. Here's the basic pseudo code.
On the main thread
foreach(Object obj in Component.GetObject())
{
//Invoke the thread pool providing the call back ...
3
votes
1answer
133 views
Dynamic Objects and File handling
I'm doing an assignment which requires file handling in C++. I am stuck at how to write and then read back dynamically created objects. i-e by the help of a base class pointer which is pointing the ...
3
votes
2answers
287 views
Perfect circle to perfect circle and Perfect circle to straight line collision HANDLING in Java
I am a newbie at Java, but decided to make a application that has a bunch of balls bouncing around. Please keep in mind that I know almost nothing about normals, which I have seen mentioned a lot in ...
3
votes
4answers
187 views
c# event handling problem
I have a class which provides a custom event:
public delegate void ResultEvent(bool result);
public class Service : INotifyPropertyChanged
{
public event ResultEvent Result;
}
Two other ...
2
votes
4answers
124 views
C# Event-Handling
I am working on a C# piano. I have already built the music keyboard and the staff. Everytime a user presses a key, it is displayed on the staff in its relevant position.
The music note displayed on ...
2
votes
2answers
87 views
C# Foreach Statement
I am developing a piano in C#.
I have the following piece of code in my program:
private void panel1_MouseDown(object sender, MouseEventArgs e)
{
mn1 = new MusicNote();
foreach ...
2
votes
1answer
200 views
can I catch exception of Iframe in parent window of Iframe
I have an IFrame in a page and IFrame has some java script
At run time java script in Iframe gives exception which i want to catch on parent window
please help
2
votes
2answers
379 views
Easier Custom Events Handling in Java
In Java, everytime I want to create a new custom event, I usually do it by add 3 methods namely:
addDogEventListener(EventListener listener);
removeDogEventListener(EventListener listener);
...
2
votes
0answers
250 views
NCurses and ESC,ALT keys
I have a problem with NCurses... i need to handle all keys like ESC... ALT+F etc.
Problem is that the codes are similar... i.e:
ESC
27
ALT+A
27
65
As on example there is double code for ...
2
votes
1answer
627 views
EXT Js Complex JSON Response Handling : Grid Insertion - Problem
Hello I am trying to insert a JSON record into the grid dynamically.
My server response is as below :
{
"studentDetails":{
"status":"ACTIVE",
"subject":"MATH",
...
2
votes
3answers
256 views
Catching an exception class within a template
I'm having a problem using the exception class Overflow() for a Stack template I'm creating. If I define the class regularly there is no problem. If I define the class as a template, I cannot make my ...
2
votes
1answer
166 views
Making use of the ValidationException class
I have a situation where one of our developers wants to put a standard in place where we throw System.ComponentModel.DataAnnotations.ValidationExceptions in all our apps moving forward. An example ...
2
votes
1answer
149 views
Handling user input in C
In C, I am writing a program which is taking in user input than comparing it to see which output it should use. I am finding it problomatic and was wondering if someone could give me a hand. So far I ...
2
votes
1answer
639 views
Powershell - Get Process ID of called appication
I need to call an external application (i.e. & 'Notepad' )
Then need to get process ID of the called application.
Get-Process Notepad = will return all Notepad processes
I want to do something ...
2
votes
3answers
247 views
Asp.Net MVC Error Handling & logging
I am trying to Catch exceptions and log it.
Presently I have written a Utility method and Passing the Exception to it in the catch block and finally logging the application using MS Enterprise ...
2
votes
1answer
416 views
Mass Ball-to-Ball Collision Handling (as in, lots of balls)
Update: Found out that I was using the radius as the diameter, which was why the mtd (mass translation distance) was overcompensating.
Another Update: The reason my balls are overlapping seem to be ...
2
votes
2answers
180 views
user defined Error collection in Visual C#
I want to write an user defined error collection class which should collect all the Error's. When we validate an entity object if there is no error it should go and save to the Database. if Error ...
2
votes
2answers
149 views
Handling Optional APIs in J2ME
What is the right way of working with optional APIs in Java Mobile?
Does one need to make different versions of their app?
Or is it enough to check APIs availability at runtime using ...
2
votes
1answer
425 views
Design pattern for shared error handling code
I'm looking for some thoughts/opinions on architecture for a layer of code that invokes methods in an API. In my case, the calling code is C#/.NET and the API is part of an unmanaged legacy DLL. But ...
2
votes
4answers
319 views
Least memory intensive way to read a file in PHP
I am reading a file containing around 50k lines using the file() function in Php. However, its giving a out of memory error since the contents of the file are stored in the memory as an array. Is ...
2
votes
1answer
61 views
Saving PHP's memory state if an error occurs
I'm curious if anyone knows how I can save the current state of a php application (the one that is currently in memory, with everything including declared variables, $_POST, $_GET) when an error ...
2
votes
2answers
748 views
Change Timestamp value in enterprise library exception handling formatter
I am using enterprize library 5.0 with c# for exception handling and for that I am using formatter.Now In my log file Timestamp is not giving the right time.
Can I change the value of timestamp in ...
2
votes
7answers
173 views
When would you prefer to declare an exception rather than handling it in Java?
I know we can declare the exception for our method if we want it to be handled by the calling method. This will even allow us to do stuff like write to the OutputStream without wrapping the code in ...
2
votes
2answers
434 views
Does Delphi really handle dynamic classes better than static?
I was told more than once that Delphi handles dynamic classes better than static.Thereby using the following:
type Tsomeclass=class(TObject)
private procedure proc1;
public
someint:integer;
...
2
votes
1answer
133 views
Can you connect Views to eventhandlers using XML?
Sometimes you want to start an Activity by pressing a Button.
Is there a way to express that in XML? I.e. to tag the Button xml with the Activity to render when it is clicked? That would certainly ...
2
votes
1answer
651 views
Google App Engine: Easy way to work with GET, POST and Cookies
When using webapp from Google App Engine, how can I distinguish POST and GET? Which one gets priority and how can I seprate them? A piece of code below shows the way to obtain a POST/GET field value:
...
2
votes
6answers
486 views
Java Hardware Interrupt Handling
I would like to know if it is possible to automatically invoke a Java method when a hardware interrupt is raised.
2
votes
7answers
1k views
Javascript event handling and flow control
I'm attempting to build a webpage that loads depending on the input provided. I'm having some trouble wrapping my head around event handling in javascript, basically. Coming from python, if I wanted ...
2
votes
1answer
168 views
Transaction handling in web apps
I have noticed in most Web applications that whenever there is a transaction involved in a train of pages, the transaction handling happens in the database layer. In a web application where there ...
2
votes
5answers
698 views
Doubt in C++ file handling
Following code, when compiled and run with g++,
prints '1' twice, whereas I expect '1' to be printed
only once, since I am dumping a single structure to
the file, but while reading back it seems to be
...
1
vote
1answer
36 views
Handling Javascript Event Order in IE
How does IE handle event propagation and is there any way to know which HTML element is currently handling the element?
The problem is something like this.
<div id="someDiv">
<input ...
1
vote
0answers
97 views
Efficeint Handling of Multipart SMS or Long SMS in Android
I have a few questions on Android SMSManager.
How do I send long SMS, say more than 160 characters. My application send SMS
as an email when there if no wifi/data connection. The SMS as email
...
1
vote
1answer
67 views
WCF async calls throwing Target invocation exception in Main()
I' developing a WCF client which makes Asynchronous calls to the WCF server. I'm using .NET 3.5 with Winforms. My original method is named GetPoints() and I'm using the GetPointsAsync() from the proxy ...
1
vote
1answer
50 views
Spring sf form tags how to change type?
This gives me error prone HTML code, because Spring automatically generates text type, how do I change this behaviour?
<td><sf:input type="password" path="password" size="20" maxlength="30" ...
1
vote
5answers
135 views
Exception handling in WinForm
I am beginner in C# programming. I have encountered small problem during building application using form. I will try to explain it properly within my abilities and experience. Problem uccured when i ...
1
vote
3answers
67 views
How to correctly handle errors in Perl
I am trying to keep my command prompt from closing when there is an error in opening a file. I already tried the 'die' command, but that closes the command prompt right after the message is ...
1
vote
4answers
613 views
CTRL-C==SIGINT. CTRL-X==?
On Linux/Unix there are signals. The Ctrl-C one (SIGINT) is obvious to me.
Now, in some other applications there are signals via Ctrl-X?!
Is that even a signal or does it generate an escape sequence?
...
1
vote
0answers
27 views
Windows Server 2008 not handling exceptions
Sorry for shouting...just a bit excited to be here.
Anyway, we have recently moved a bunch of console applications (written in C#, .net 4) to new windows server 2008 machines. All the code executing ...
1
vote
3answers
93 views
Issues writing to a file in Perl
I am running this script on solaris. I am trying to write the real, user, and system times to a file, each on a separate line. However, this code instead writes them out together on the same line ...
1
vote
3answers
181 views
jQuery: binding a single event listener that can handle events of its children
I encountered a question to which I didn't know the solution for.
Suppose I have this HTML markup (dynamically generated by the serer or a static file):
<ul class="myList">
<li><a ...