473,406 Members | 2,312 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,406 software developers and data experts.

How do I find where my application is crashing

Sorry if this difficult to understand but I'm pulling my hair out and could
do with some good ideas please...

I've developed an application which in .NET as a Windows service which is
simply crashing but with no signs/details on where the crash is occuring.
Please not that the crash is happening on the server and only when the
server is running on a Win2K3 host. App is developed as an N-Tier app
(client-processing-processing-data) with (.NET Remoting & DCOM for
communications). VS.NET 2003 with .NET Framework V1.1 (will be testing under
V1.1 SP1 'soon').

It's a rather complicated application with a few layers so I'll try to
explain as best I can.... Here are all the bits:
A) .NET Service (C#)
B) Business Logic for application (C#)
C) .NET wrapper for 3rd party library (C#)
D) .NET to C++ Interface layer for 3rd party library (Managed C++)
E) 3rd party library - DLL (C++ API)
F) Interop to company's legacy component
G) Legacy components (ATL/C++ DCOM)
H) Data layer supporting 3rd party DLL to legacy component (Mostly unmanaged
C++ but a little bit of Managed C++ is present for event propogation)
I) New GUI (C#)

I initiates a connection to A via B (configured via Remoting Configuration
file)
I initiates an operation to process some data.
B allocates a thread from a ManagedThreadPool - class downloaded (from
GotDotNet, MS written)
In that thread B loads E via C and D (B has no direct access to D)
E dynamically loads H (GetProcAddress calls)
H calls G for data when needed.
H generates events which are received/processed by B which if needed are
evented back to I

The problem is pinpointed to when I run a Release copy of H, the server will
usually 'stop' without warning. A debug version never shows this problem.
However, the problem I have is that the process just *stops*. No error, log,
dialog, or popup is generated at all! I've attached a Remote Debugger to the
image (albeit Release mode) and there are *no* exceptions caught. It starts
work and then all threads just stop. I note that the exit codes of the
threads are 0x502.

I've got exception handling in all the layers that I have source code to
(i.e. except the 3rd party and a bit of the legacy component). I've even
added a C->C++ exception translator (which helped find some issues we were
having a while back), the .NET/C# assemblies all have full exception
handling using the MS Application Block. We continue receive and record all
other errors - it's just this one occasion where it looks like it was a
process exit rather than a failure but this isn't expected at all!

If anyone could point me in a direction I'd very much appreciate it! Sorry
for the information overload!
Jul 21 '05 #1
1 2173
Hi,

Typically problems like this are caused by corruption somewhere that becomes
obvious when compiled as a Release build because of optimizations and
whatnot. Try reducing the compiler and linker optimization settings 1 by 1
if possible to find out whether a particular setting's breaking anything.
Failing that, are you able to by a third party analysis tool or something?
Debugging things like this is soul destroying, especially with the system
you're looking at. Can you isolate the offending subsystem? You may be able
to build a testbed to give it a work out, but you'll probably find that it
runs fine unless it's inconvenient for it to crash.

If you can isolate it down a bit, someone'll be able to guess why a certain
setting etc could be causing a problem.

Steve

"Adam Hearn" <ah****@nospam.com> wrote in message
news:eU**************@TK2MSFTNGP14.phx.gbl...
Sorry if this difficult to understand but I'm pulling my hair out and could do with some good ideas please...

I've developed an application which in .NET as a Windows service which is
simply crashing but with no signs/details on where the crash is occuring.
Please not that the crash is happening on the server and only when the
server is running on a Win2K3 host. App is developed as an N-Tier app
(client-processing-processing-data) with (.NET Remoting & DCOM for
communications). VS.NET 2003 with .NET Framework V1.1 (will be testing under V1.1 SP1 'soon').

It's a rather complicated application with a few layers so I'll try to
explain as best I can.... Here are all the bits:
A) .NET Service (C#)
B) Business Logic for application (C#)
C) .NET wrapper for 3rd party library (C#)
D) .NET to C++ Interface layer for 3rd party library (Managed C++)
E) 3rd party library - DLL (C++ API)
F) Interop to company's legacy component
G) Legacy components (ATL/C++ DCOM)
H) Data layer supporting 3rd party DLL to legacy component (Mostly unmanaged C++ but a little bit of Managed C++ is present for event propogation)
I) New GUI (C#)

I initiates a connection to A via B (configured via Remoting Configuration
file)
I initiates an operation to process some data.
B allocates a thread from a ManagedThreadPool - class downloaded (from
GotDotNet, MS written)
In that thread B loads E via C and D (B has no direct access to D)
E dynamically loads H (GetProcAddress calls)
H calls G for data when needed.
H generates events which are received/processed by B which if needed are
evented back to I

The problem is pinpointed to when I run a Release copy of H, the server will usually 'stop' without warning. A debug version never shows this problem.
However, the problem I have is that the process just *stops*. No error, log, dialog, or popup is generated at all! I've attached a Remote Debugger to the image (albeit Release mode) and there are *no* exceptions caught. It starts work and then all threads just stop. I note that the exit codes of the
threads are 0x502.

I've got exception handling in all the layers that I have source code to
(i.e. except the 3rd party and a bit of the legacy component). I've even
added a C->C++ exception translator (which helped find some issues we were
having a while back), the .NET/C# assemblies all have full exception
handling using the MS Application Block. We continue receive and record all other errors - it's just this one occasion where it looks like it was a
process exit rather than a failure but this isn't expected at all!

If anyone could point me in a direction I'd very much appreciate it! Sorry
for the information overload!

Jul 21 '05 #2

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Tosch | last post by:
I have an application that uses to COM objects and does a complex file conversion between two different systems. When converting a large amout of files I'm experiencing a memory leak resulting in...
1
by: Adam Hearn | last post by:
Sorry if this difficult to understand but I'm pulling my hair out and could do with some good ideas please... I've developed an application which in .NET as a Windows service which is simply...
1
by: ankit | last post by:
I made a Cpp application wihich links with shared objects. But when I runs the application, it crashes surprisingly before entering into the main() control block. After trying with gdb I came to...
5
by: xoinki | last post by:
hi all, I have a very general question.. My program is crashing in a window procedure... the sample code is as follows.. return CallWindowProc(pccustgrid->m_wporiglistwndproc, hwnd,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.