|
I'm trying to track down some bugs on a Windows Mobile 5.0 app. The testers can reproduce these bugs no problem, but I can't. They are using the devices across a wireless network, but I'm always running the app in an emulator, or on the actual device ...
Started by raven on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
WLAN connection when trying to debug through the cradle..
|
|
Is debugging JavaScript as easy as debugging a C++/C#/Java application (given the best IDE available), or are the current tools much more limited and less user friendly, making debugging a headache?
Started by Dimitri C. on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
I think when there were no tools ....
Is it as "easy" as Java, C#, etc.
Such as Firebug or JSLint to help you debug or you may never find your problem in a large application Visual Studio, it makes it pretty easy to debug javascript.
|
|
Hi,
In One event we have some debugging questions and I have to design some really good debugging problems in C/C++.
I want to know how can I create some good problems on debugging, means what all aspects should I consider while designing the problem....
Started by GG on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
One-off errors, but not least - if you're a a... .
Source-level debugging - problem stated Questions and destructors, and you should be able to create a difficult-to-spot problem with ease.
Assuming a particular endianness or padding.
|
Ask your Facebook Friends
|
What is the long time you have spent debugging a particular problem?
Was the solution trivial in hindsight?
How did management react when it took so long?
Started by Blankman on
, 12 posts
by 12 people.
Answer Snippets (Read the full thread at stackoverflow):
I was adding multi-lingual support (Chinese to take a long time before an obvious... .
The problem was trivial, but didn't make sense.
About a year ago, I spent three weeks correcting a problem with our.
Is an artform onto itself, sometimes.
|
|
Hi there,
I have an annoying problem with the debug mode of Visual C++ 2005. My scientific program uses FFTW3 library which is a FFT transformation calculation library. Sadly, there is no official VC++ pre-compiled version of FFTW3 library. More sadly...
Started by jchain on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Most probably, it is not because of lack of Debug version of the....
It just means that you won't be able to debug into it nor get accurate call stacks through it.
The "Binary was not built with debug information" message is not fatal.
|
|
I'm looking for details on the DEBUG HTTP verb.
It's clear to me that this is used for remote debugging - though I'm not even sure if it's for IIS or ASP.NET...
If I want to access this interface directly - i.e. not through Visual Studio, but sending ...
Started by AviD on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Just for completeness, consolidating here the answers from what-is-the-non-standard-http....
This allows you to 'listen' for debug statements either on your location about DEBUG http as I am unfamiliar with it.
From sysinternals DebugView.
|
|
Normally to attach a debuger to a running jvm you would need start the jvm with arguments such as the following:
> java -Xdebug -Xrunjdwp:transport=dt_socket,address=1000,server=y,suspend=n
Now if I want to debug a process that wasn't started in debug...
Started by hhafez on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
You can always use jdb and debug by hand :P
VisualVM isn't a debugger, but you can get.
You may be able to use jsadebugd ( JDK ) to attach a debug server to the process (note machine first.
|
|
Hello, I am facing a problem while debugging in eclipse. I keep getting pop-up Exception processing async thread queue java.lang.NullPointerException
Does anyone know what the exact problem is?
Thanks Yogesh
Started by yogsma on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Can you provide any more information beyond the error window text?
The problem was ....
It sounds like the problem is either from trying to dereference a null pointer, or there's a timing problem related to use of multiple threads.
|
|
Please watch out following video link to understand my problem.
http://www.yourfilelink.com/get.php?fid=508510
When I put break points to x code project.
Then I go to run - debug option.
Program should be stopped - paused at the placed break point.
When...
Started by sagar on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Will get far enough to even try), but a general thought is to make sure you are running in debug this behavior when I use "attach to process" in XCode, but "Build and Debug" will work just fine.
|
|
If, like me, you get friends, family, and coworkers with computer problems (whether it's server, desktop, or laptop related), who ask you to help over the phone or IM, how do you debug problems?
I'm quite good at debugging hardware and software problems...
Started by Daniel Huckstep on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at serverfault):
Ask lots of questions.
Encourage them to talk as about the problem as much as possible.
Face-to-face.
|