Re: [ADVANCED-DOTNET] Exception handling in multitier applications

2008-07-17 Thread Seref Arikan
pics. > [mailto:[EMAIL PROTECTED] On Behalf Of Seref Arikan > Sent: Tuesday, July 01, 2008 12:34 PM > To: ADVANCED-DOTNET@DISCUSS.DEVELOP.COM > Subject: Re: [ADVANCED-DOTNET] Exception handling in multitier applications > > Hi Bobby, > I guess letting the layers to bubble the er

Re: [ADVANCED-DOTNET] Exception handling in multitier applications

2008-07-16 Thread Bobby Heid
Enterprise Library. It's good stuff. Bobby -Original Message- From: Discussion of advanced .NET topics. [mailto:[EMAIL PROTECTED] On Behalf Of Seref Arikan Sent: Tuesday, July 01, 2008 12:34 PM To: ADVANCED-DOTNET@DISCUSS.DEVELOP.COM Subject: Re: [ADVANCED-DOTNET] Exception handli

Re: [ADVANCED-DOTNET] Exception handling in multitier applications

2008-07-01 Thread Seref Arikan
of advanced .NET topics. > [mailto:[EMAIL PROTECTED] On Behalf Of Seref Arikan > Sent: Thursday, June 26, 2008 5:41 AM > To: ADVANCED-DOTNET@DISCUSS.DEVELOP.COM > Subject: [ADVANCED-DOTNET] Exception handling in multitier applications > > Hi, > I'd like to get your opinions,

Re: [ADVANCED-DOTNET] Exception handling in multitier applications

2008-07-01 Thread Seref Arikan
Hi Conrad, I've previously worked on AOP, but the idea of using weavers did not sound very nice, maybe I should check it again. Still, I'd be more inclined to go towards a method that would not require external modifications to assemblies. Do you have any suggestions for tools in a .NET environment

Re: [ADVANCED-DOTNET] Exception handling in multitier applications

2008-07-01 Thread Seref Arikan
s/library/cc309505.aspx > > From: Discussion of advanced .NET topics. [ > [EMAIL PROTECTED] On Behalf Of Conrad Frix [ > [EMAIL PROTECTED] > Sent: Monday, June 30, 2008 10:30 PM > To: ADVANCED-DOTNET@DISCUSS.DEVELOP.COM > Subject: Re: [ADVANCED-DOTNET] Exception han

Re: [ADVANCED-DOTNET] Exception handling in multitier applications

2008-07-01 Thread Ron Young
EMAIL PROTECTED] Sent: Monday, June 30, 2008 10:30 PM To: ADVANCED-DOTNET@DISCUSS.DEVELOP.COM Subject: Re: [ADVANCED-DOTNET] Exception handling in multitier applications Hi Seref, I think you're looking for aspect oriented programming (AOP). I think the comparison between your sentence and

Re: [ADVANCED-DOTNET] Exception handling in multitier applications

2008-06-30 Thread Conrad Frix
Hi Seref, I think you're looking for aspect oriented programming (AOP). I think the comparison between your sentence and the first sentence of the wikipedia article on AOP is illuminating. Yours: "I've realized that error handling aspects tend to cross cut multiple layers sometimes" Wikipedia:

Re: [ADVANCED-DOTNET] Exception handling in multitier applications

2008-06-30 Thread Bobby Heid
. [mailto:[EMAIL PROTECTED] On Behalf Of Seref Arikan Sent: Thursday, June 26, 2008 5:41 AM To: ADVANCED-DOTNET@DISCUSS.DEVELOP.COM Subject: [ADVANCED-DOTNET] Exception handling in multitier applications Hi, I'd like to get your opinions, and if possible pointers to resources for exception handli

[ADVANCED-DOTNET] Exception handling in multitier applications

2008-06-26 Thread Seref Arikan
Hi, I'd like to get your opinions, and if possible pointers to resources for exception handling in multitier .net applications. When you have a usual multitier app, you usually have a db access layer like a generated ORM classes, web services exposing them, and clients (web and desktop) that consum

Re: [ADVANCED-DOTNET] Exception Handling

2005-02-24 Thread Hammad Rajjoub
Of Chakravarty, Sarvajith Sent: Thursday, February 24, 2005 5:07 PM To: ADVANCED-DOTNET@DISCUSS.DEVELOP.COM Subject: Re: [ADVANCED-DOTNET] Exception Handling Enterprise Library works only with .Net framework 1.1 Are they coming out with a version which works on .Net framework 2.0? This has become an

Re: [ADVANCED-DOTNET] Exception Handling

2005-02-24 Thread Adwait Ullal
Monday, 21 February 2005 4:43 PM > To: ADVANCED-DOTNET@DISCUSS.DEVELOP.COM > Subject: Re: [ADVANCED-DOTNET] Exception Handling > > True. > I will suggest you to use Exception Handling Application Block (now > bundled > in Microsoft Enterprise Library) available at > http://msdn.microsof

Re: [ADVANCED-DOTNET] Exception Handling

2005-02-24 Thread Brad Wilson
The charter of the group is to work on existing technologies, not pre-release technologies. I would expect they will do a refresh once 2.0 is relased. - Brad On Thu, 24 Feb 2005 13:06:51 +0100, Chakravarty, Sarvajith <[EMAIL PROTECTED]> wrote: > Enterprise Library works only with .Net framework 1

Re: [ADVANCED-DOTNET] Exception Handling

2005-02-24 Thread Chakravarty, Sarvajith
topics. [mailto:[EMAIL PROTECTED] Sent: Monday, 21 February 2005 4:43 PM To: ADVANCED-DOTNET@DISCUSS.DEVELOP.COM Subject: Re: [ADVANCED-DOTNET] Exception Handling True. I will suggest you to use Exception Handling Application Block (now bundled in Microsoft Enterprise Library) available at http

Re: [ADVANCED-DOTNET] Exception Handling

2005-02-21 Thread Alexandre Rocco
Douglas/Hammad, Thanks for the insights. I am looking forward to use the log4net library, don't know if you used it before but it's very straightforward. About the location to log, this is a good strategy too. I will try to log most fatal errors and/or exceptions on the application tier, I think

Re: [ADVANCED-DOTNET] Exception Handling

2005-02-21 Thread Hammad Rajjoub
al Message- From: Unmoderated discussion of advanced .NET topics. [mailto:[EMAIL PROTECTED] On Behalf Of Douglas Wilson Sent: Monday, February 21, 2005 12:05 PM To: ADVANCED-DOTNET@DISCUSS.DEVELOP.COM Subject: Re: [ADVANCED-DOTNET] Exception Handling Alex The best way I found to implement th

Re: [ADVANCED-DOTNET] Exception Handling

2005-02-20 Thread Douglas Wilson
EMAIL PROTECTED] On Behalf Of Alexandre Rocco Sent: 19 February 2005 05:09 PM To: ADVANCED-DOTNET@DISCUSS.DEVELOP.COM Subject: [ADVANCED-DOTNET] Exception Handling I have a somewhat good understanding of exceptions on the .net framework and how they work and bubble up through applications. One doubt I

[ADVANCED-DOTNET] Exception Handling

2005-02-19 Thread Alexandre Rocco
I have a somewhat good understanding of exceptions on the .net framework and how they work and bubble up through applications. One doubt I came up these days was where should I put the exception handling code to log the errors/information in the application. I searched a bit on the net and found s