|
I am fairly new to remote debugging in Visual Studio, and by new I mean I have never done it before. Here are the steps I have taken to try to remotely debug an application on one of the servers in our network:
open a website in VS2008 "\\server\website...
Started by Russ Bradberry on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
To add a pathname to the symbol file symbols are loaded manually is not selected, unless you want to load symbols manually when you debug.
Them it doesn't have the necessary debug symbols to break on.
|
|
I have an VB ASP.NET (.aspx) file that has deeply nested logic and I'm getting lots of build errors like "If must end with a matching End If" and "Do must end with a matching Loop". How do I begin to debug this beast to at least get it to build?
Started by JoelFan on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Really effed code that won't compile you sometimes have....
Debugging starts after you get it to compile.
That's how I approach a problem like this.
The simple answer is to remove a large nested section and if it passes add a bit more until it fails .
|
|
How can one debug errors related to code-signing and missing certificates? Can I do the process from command line?
In XCode under 'Organizer > Provisioning Profiles', I get 'A valid signing identity matching this profile could not be found in your ...
Started by notnoop on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
They should have been generated when you created the certificate request... .
Possible problems:
The certificates have expired
The certificates have been renewed without updating the application provisions
The private/public keys are missing from keychain .
|
Ask your Facebook Friends
|
Right now I get an error message saying:
No file _formulas.aux. ... ! Missing $ inserted. ...
I've tried looking for and single @f$ tags in the code, but I have not been successful in locating the culprit thus far. How can I go about solving this specific...
Started by Gilad Naor on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
If, while the command line is displaying....
It sounds like one of your formulas has an error.
Are in the same directory as your[ a+b \f] the formula will be in "display" style .
The .log, .aux, etc.
With specific line numbers where errors occurred.
|
|
When over freeing a pointer you may see an error such as
"pointer being freed was not allocated"
When debugging with the simulator, I add a build argument MallocStackLogging = YES - this allows me to use malloc_history in the terminal to track down where...
Started by adam on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Go to the....
To access these settings, select your executable from the Groups & Files pane in XCode, then Get Info .
I generally use NSZombie for such things, check this out
You need to set the MallocStackLogging env variables on the target executable.. .
|
|
I have an XP client that is experiencing an issue. My dev box is Vista Home 64. I start up the debugger on the client machine and when i try to run on the dev box, it says 'Unable to debug. Remote debugger doesn't support this version of windows'.
Looks...
Started by asp316 on
, 6 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Have you got any stace-trace or further information about your system.security error? Perhaps by compiling a debug version, rather than a release, you'll get more of an idea of what.
Through it there.
|
|
During development I've seen xml read errors like this more than once:
TestData.ReadFromXml: xml Deserialize error:There is an error in XML document (2, 2)..
What exactly does (2, 2) refer to? Is it line 2 in the xml file? Line 2, token 2, what?
Are there...
Started by P a u l on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Looking at your example.
You should examine the InnerException to get a more precise error message.
Try some xml validation tool to validate your xml file) .
At the Errors window to see if it complains at all.
|
|
I have a fairly simple app. It compiles fine. Unfortunately, when I Build and Go, it fails before even the first line of code, thus making it impossible for me to even debug it.
Where do I start? I do have the stack track though.
Started by AngryHacker on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Other than that, you won't be able to debug much, because.
Could start looking there.
|
|
Update
Daniel was close, it just wasn't the search path. The Prefix Header under GCC 4.2 was set to: $(SYSTEM_LIBRARY_DIR)/Frameworks/AppKit.framework/Headers/AppKit.h
I missed that when I was combing through the first 2 times. I removed it and now all...
Started by Corey Floyd on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Perhaps its a similar case, its.
This leads to weird linker errors where of sync whenever I switch from debug/release or device/simulator.
Become out of sync (in the build configuration dropdown).
|
|
Consider the following trivial HTML page that throws an error:
<html><head><script> throw new Error('oops'); alert('should not reach here'); </script></head></html>
The user I am logged into Vista with is a member of...
Started by Simon Lieschke on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Edit: Let me rephrase: have you double-checked....
I could be mistaken though, I haven't been working with Vista much .
Have you gone into the Advanced Options in IE? I think the settings you are looking for are just turned off by default for normal users .
|