Remote debug with gdb

Can anybody help?
I try to use remote debug with gdb-5.0 on Solaris8 x86. When I issue "target cisco ..." I get "No such file or directory" message.
What is the problem.
Thanks.

Solved for me
FlasCC/sdk/usr/bin/g++ -c -g -O0 main.cpp ## additional flags
FlasCC/sdk/usr/bin/g++ main.o -emit-swf -o main.swf ## additional flags
changet to
FlasCC/sdk/usr/bin/g++ -g -O0 main.cpp -emit-swf -o main.swf ## additional flags

Similar Messages

  • Apex 4.1 remote debugging with dbms_debug_jdwp - breakpoints not working

    Hi all,
    I'm using remote debugging with sqldeveloper like described here:
    http://www.oracle.com/webfolder/technetwork/de/community/apex/tipps/remote-debug/index.html
    http://sueharper.blogspot.com/2006/07/remote-debugging-with-sql-developer_13.html
    It works great with my sqldeveloper 3.0 and Apex 4.0.2
    Now i tried the same on two other servers with Apex 4.1
    The debugger is connecting. I can see the connect and diconnect message in the debug windows in the sqldeveloper.
    But the breakpoints are not working.
    Is the debugging working in Apex 4.1 for anyone here?
    Any ideas why the breakpoints are not working?
    BR,
    Björn

    Hi Björn,
    In your APEX application, have you tried updating the URL to include the parameter REMOTE, in order to initiate the remote debug connection? e.g.
    f?p=100:1:&SESSION.::REMOTE::Using the REMOTE parameter cuts out the need to specify debug code surrounding statements in the APEX PL/SQL.
    The steps are as follows:
    1) In SQL Developer, set break points in the the PL/SQL code, and compile using the "Compile for debug" option
    2) Execute the following two grants
    grant DEBUG CONNECT SESSION to <PARSE USER>;
    grant debug on <PROC> to public;  <-- might not need public but just whoever the DAD is running as.5) In SQL Developer, right-click on your connection and select the "Remote Debug..." context menu item. This will launch the "Listen for JPDA" dialog.
    5) Run the APEX Application page containing/activating the code you wish to debug, and update its URL with REMOTE in the debug parameter of the URL, and then hit Enter.
    6) Carry out the action on the page to trigger the breakpoint in your code e.g. submit the page, or click a button on the page, and you should be redirected to the breakpoint in the code in SQL Developer.
    Although I'm running with the latest release of SQL Developer, version 3.2.2 (http://www.oracle.com/technetwork/developer-tools/sql-developer/downloads/index.html), and APEX 4.2, the 'REMOTE' parameter was introduced with our 3.1 release so will also be available for you to use in 4.1.
    Regards,
    Hilary

  • Remote Debugging with SQL-Developer (APEX)

    Hello all,
    I have a problem with the Remote Debugging functionality in SQL Developer.
    I want to debug a fuction that generate a SQL-Statement. This SQL is the basic of a report in APEX.
    I grant the  privilege DEBUG CONNECT SESSION and DEBUG ANY PROCEDURE for the user.
    This is the PL/SQL in the report region:
    declare
      v_sql varchar2(32767);
    begin
      dbms_debug_jdwp.connect_tcp('192.168.2.1', 4200);
      v_sql := generate_sql(:P1_TABLENAME);
      dbms_debug_jdwp.disconnect;
      return v_sql;
    end;
    When I run the page i get this error:
    ora-30677: session is already connected to a debugger
    But I can`t debug it in SQL-Developer.
    Can you help me please?

    Hi Scott,
    Yes my call to this is in a on submit after computations and validations page process. Below is the code in which I get the insufficient privileges error:
    BEGIN
      IF :DEBUG = 'YES' THEN
        dbms_debug_jdwp.connect_tcp('10.200.37.223',4000);
      END IF;
      species_upload.load_tsv_file(:APP_USER, :P302_SURVEY_BROWSE, 'survey');
      --null;
      IF :DEBUG = 'YES' THEN
        dbms_debug_jdwp.disconnect;
      END IF;
    END; I tried running it in SQL workshop in Apex as
    begin
       dbms_debug_jdwp.connect_tcp('10.200.37.223',4000);
    end;and I still get the insufficient privileges error message.
    My parsing schema is: SNHLIVE
    And the APEX user is: APEX_PUBLIC_USER I got this by doing select USER from dual in the SQL Commands in APEX.
    I have done the following:
    grant DEBUG ANY PROCEDURE to SNHLIVE
    grant DEBUG ANY PROCEDURE to APEX_PUBLIC_USER
    grant DEBUG ANY PROCEDURE to ANONYMOUS
    grant DEBUG CONNECT SESSION to SNHLIVE;
    grant DEBUG CONNECT SESSION to APEX_PUBLIC_USER;
    grant DEBUG CONNECT SESSION to ANONYMOUS
    grant DEBUG on SNHLIVE.species_upload TO SNHLIVE;
    grant DEBUG on SNHLIVE.species_upload TO APEX_PUBLIC_USER;
    grant DEBUG on SNHLIVE.species_upload TO ANONYMOUS;What I followed was David's article: Link: [http://www.oracle.com/technology/oramag/oracle/08-may/o38browser.html?_template=/ocom/print]
    Now i can get remote debugging work on the same database using SQL Plus and Java application but not in Apex.
    Any ideas why?
    Thanks in advance,
    Paul.

  • Remote debugging with APEX and SQL Developer

    Hi,
    I have problems concerning breakpoints within my SQL Packages I want to debug.
    I want to force SQL-Developer to suspend execution of a function, so I can get forward step by step.
    The SQL-Developer do not stop executing at the breakpoints I set in the Package.
    The message I get is the following (on SQL-Developer side):
    Debugger accepted connection from remote process on port 4000.
    Processing 110 classes that have already been prepared...
    Finished processing prepared classes.
    Debugger disconnected from remote process.
    Seems to me, that the process runs into the debug-mode but leave without stopping at a given breakpoint??
    Do anybody have an idea how to solve it?
    We use Oracle 10.2.0.3.0, SQL Developer 1.5.1 and APEX 3.1.2.
    The Package-function I want to debug runs on another Oracle database as the APEX application.
    Thanks in advance
    Regards
    Norbert
    Edited by: Norbert2 on Apr 20, 2009 5:47 AM

    Hi Carsten,
    now I have done a further step. I can debug a remote PL/SQL-Package through APEX, but now I get an exception when the program execution jumps back to the APEX PL/SQL-Package.
    My APEX-Page-Process looks like this:
    BEGIN
      dbms_debug_jdwp.connect_tcp(host => 'IP-ADDRESS', port => '4201');
      APEX_TEST_PKG.remoteDebug;
      dbms_debug_jdwp.disconnect;
    END;The procedure APEX_TEST_PKG.remoteDebug looks like this (located on the APEX-DB):
    PROCEDURE startRemoteDebug
      AS 
        v_string    VARCHAR2(50)   := '';
      BEGIN
        [email protected](host => 'IP-ADDRESS', port => '4000',
                 option_flags => dbms_debug_jdwp.connect_defer_suspension);
        v_string := [email protected];
        DBMS_OUTPUT.PUT_LINE(v_string);
        [email protected];
      END remoteDebug; The procedure REMOTE_TEST_PKG.testFunc looks like this (located on the Remote-DB):
    FUNCTION testFunc RETURN VARCHAR2
      AS 
        v_string    VARCHAR2(50)   := '';
      BEGIN        
        v_string := 'Test';
      RETURN v_string;
    END testFunc; When I start the debug session without the option dbms_debug_jdwp.connect_defer_suspension, I get an exception Oracle.EXCEPTION_ORA_604.
    Starting the debug session with the above mentioned option, I am able to debug the remote function.
    But now I get an exception when the executor tries leaving the remote function going back to the invoking function. With the debugger I can step over the return-statment successfully and the debugger steps on the next line END testFunc;. On this line I get the exception above
    Exception breakpoint occurred at line -1 of PBREAK.pls.
    $Oracle.Builtin.EXCEPTION_USER:
    Exception breakpoint occurred at line -1 of PBREAK.pls.
    $Oracle.Builtin.EXCEPTION_USER: I tried another way where I get now exception and where I can step through my functions in APEX, descending to functions in the remote db and going back to APEX.
    For this case I put the debug-statements in remote function:
    FUNCTION testFunc RETURN VARCHAR2
      AS 
        v_string    VARCHAR2(50)   := '';
      BEGIN        
        dbms_debug_jdwp.connect_tcp(host => 'IP-ADDRESS', port => '4000');
        v_string := 'Test';
        dbms_debug_jdwp.disconnect;  
      RETURN v_string;
    END testFunc; But I have no idea why it doesn't work properly starting the remote debug session in the apex procedure.
    Regards
    Michael
    Edited by: user6044915 on 02.09.2009 04:08
    Edited by: user6044915 on 02.09.2009 04:21
    Edited by: user6044915 on 02.09.2009 04:28

  • Remote debugging with WSAD

    "Hi,

    Hi Scott,
    Yes my call to this is in a on submit after computations and validations page process. Below is the code in which I get the insufficient privileges error:
    BEGIN
      IF :DEBUG = 'YES' THEN
        dbms_debug_jdwp.connect_tcp('10.200.37.223',4000);
      END IF;
      species_upload.load_tsv_file(:APP_USER, :P302_SURVEY_BROWSE, 'survey');
      --null;
      IF :DEBUG = 'YES' THEN
        dbms_debug_jdwp.disconnect;
      END IF;
    END; I tried running it in SQL workshop in Apex as
    begin
       dbms_debug_jdwp.connect_tcp('10.200.37.223',4000);
    end;and I still get the insufficient privileges error message.
    My parsing schema is: SNHLIVE
    And the APEX user is: APEX_PUBLIC_USER I got this by doing select USER from dual in the SQL Commands in APEX.
    I have done the following:
    grant DEBUG ANY PROCEDURE to SNHLIVE
    grant DEBUG ANY PROCEDURE to APEX_PUBLIC_USER
    grant DEBUG ANY PROCEDURE to ANONYMOUS
    grant DEBUG CONNECT SESSION to SNHLIVE;
    grant DEBUG CONNECT SESSION to APEX_PUBLIC_USER;
    grant DEBUG CONNECT SESSION to ANONYMOUS
    grant DEBUG on SNHLIVE.species_upload TO SNHLIVE;
    grant DEBUG on SNHLIVE.species_upload TO APEX_PUBLIC_USER;
    grant DEBUG on SNHLIVE.species_upload TO ANONYMOUS;What I followed was David's article: Link: [http://www.oracle.com/technology/oramag/oracle/08-may/o38browser.html?_template=/ocom/print]
    Now i can get remote debugging work on the same database using SQL Plus and Java application but not in Apex.
    Any ideas why?
    Thanks in advance,
    Paul.

  • Can't debug with gdb - avm2-remote times out

    I'm trying to debug a FlasCC SWF that's loaded by our main SWF, but can't get it working and could use some help and/or advice.
    This is on OS X, Firefox 20, Flash debug player 11.7.700.169
    I put flascc/sdk/usr/bin at the front of my path
    I created /Library/Application Support/Macromedia/mms.cfg and added the line "ScriptStuckTimeout=600"
    I exported FLASCC_GDB_RUNTIME=/Applications/Firefox.app
    I launch gdb, but cannot get it to attach to the loaded SWF. I always get a timeout error:
    $ gdb
    GNU gdb (GDB) 7.3
    Copyright (C) 2011 Free Software Foundation, Inc.
    License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
    This is free software: you are free to change and redistribute it.
    There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
    and "show warranty" for details.
    This GDB was configured as "--host=x86_64-apple-darwin10 --target=avm2-elf".
    For bug reporting instructions, please see:
    <http://www.gnu.org/software/gdb/bugs/>.
    (gdb) break main
    No symbol table is loaded.  Use the "file" command.
    Make breakpoint pending on future shared library load? (y or [n]) y
    Breakpoint 1 (main) pending.
    (gdb) run
    Starting program: 
    /xxxxxxx/tools/flascc/1.0.1/sdk/usr/bin/../../usr/share/flascc-run.gdb:1: Error in sourced command file:
    localhost:6666: Operation timed out.
    Looking at flascc-run.gdb, it contains one line:
    target avm2-remote localhost:6666
    So, it seems like something should be listening on port 6666 but isn't? What am I missing here?
    Thanks,
    --brian

    Solved for me
    FlasCC/sdk/usr/bin/g++ -c -g -O0 main.cpp ## additional flags
    FlasCC/sdk/usr/bin/g++ main.o -emit-swf -o main.swf ## additional flags
    changet to
    FlasCC/sdk/usr/bin/g++ -g -O0 main.cpp -emit-swf -o main.swf ## additional flags

  • Remote debugging with Eclipse and WS7

    Any idea how I can set this up?
    Thanks

    Not true. You can do it through Eclipse with settings set in the server.xml <jvm> tag. I know because I asked this quetion a few years ago and implented the information.
    Why am I asking again. Well I lost the e-mail with the information (Heh the inbox got full and I dumped old e-mails) Now I'm collecting old tips to keep just in case I run across the problem again. Not every company moves on to the last technology. Some hang on to some out dated stuff.
    Thanks for the suggestion I know of NetBeans and think its one of many great IDE tools.

  • Remote debugging with VC

    Has anyone had success connecting remotely to a WebLogic. I am running
    webLogic 5.1 on Solaris using sun's JDK 1.2 and trying to connect to it from
    VisualCafee running on an NT machine. I can successfully connect to the WL
    process from JDB but not from VC. It seems that VC never even tries to find
    the VM process.

    I suggest that you post this to the tools newsgroup.
    Michael Girdley
    WLS Product Manager
    Boris Tabenkin <[email protected]> wrote in message
    news:8dkuao$kv3$[email protected]..
    Has anyone had success connecting remotely to a WebLogic. I am running
    webLogic 5.1 on Solaris using sun's JDK 1.2 and trying to connect to itfrom
    VisualCafee running on an NT machine. I can successfully connect to the WL
    process from JDB but not from VC. It seems that VC never even tries tofind
    the VM process.

  • Remote Debugging with WLE (JPDA)

    Help,
    Need to information on connecting TogetherJ or VisualCafe to WLE. I have
    been told to install JavaTM Platform Debugger Architecture, version 1.0
    (JPDA 1.0).
    Has anyone done this?
    Any pointers,
    Thanks,
    [email protected]

    I made a mistake. BEA's JavaServer DOES NOT today support the JPDA debugger platform.
    Only the "old" Sun one which uses the agent password stuff.
    Sorry to have mislead you.
    unless of course a BEA WLE guru in engineering has a trick that allows this to work...?
    Wendell MacKenzie wrote:
    This works under Solaris7 using jpda1_0.
    LD_LIBRARY_PATH=/opt/wle/5.1/lib:/usr/Solaris_JDK_1.2.2_05a/jre/lib/sparc:/usr/jpda1_0/lib/sparc
    export LD_LIBRARY_PATH
    edit according to your host's installation dirs
    get the startup args to your JavaServer's boot requirements via:
    tmboot -n -d1 -i <ID> (where ID is the numeric id of the Java Server you want
    to debug)
    and then launch the process from the shell as in:
    JavaServer -C dom=<DOMAIN> -i 6 -i 81 -u nodename -U <ULOG_PATH_PREFIX> -m 0
    -A --
    -Xbootclasspath:/usr/Solaris_JDK_1.2.2_05a/lib/tools.jar:/usr/Solaris_JDK_1.2.2_05a/jre/lib/rt.jar
    -Xrunjdwp:transport=dt_socket,address=<PORT>,server=y,suspend=n -Xdebug
    <SERVERIMPL>.jar <SERVER_SPECIFIC_ARGS>
    Change each <XXXXX> as appropriate for your configuration.
    Be sure to check your ULOG for the password generated, you'll need it when
    you launch your client
    that will connect to the Java server at debug time.
    Hope this helps.
    Wendell
    Scott Jones wrote:
    Help,
    Need to information on connecting TogetherJ or VisualCafe to WLE. I have
    been told to install JavaTM Platform Debugger Architecture, version 1.0
    (JPDA 1.0).
    Has anyone done this?
    Any pointers,
    Thanks,
    [email protected]

  • Remote debuging with Eclipse and Sun WebServer 7

    Does any have an Idea how this can be done?
    Thanks

    This is not the right forum for this question. The right forum might be http://forum.java.sun.com/forum.jspa?forumID=759

  • How to debug Injected remote thread with symbols (not a DLL just a thread)

    I am trying to debug my injected code assignment(code injected into explorer but for the porpose of my research assignment it can be any 3rd party code). I am able to connect to my VM(remotely with a remote debugging monitors) and attach to my breaking thread
    (int 3) inside explorer, but I can only see my code as dis-assembly code. I need to see my source code (have the debugger look for it for that offset/thread).(I believe i have all the pdbs stored correctly on the other system as I was able to debug an "injected"
    dll module with its source code,(after attaching to that process of-course)
    I want to debug my Injected code with my source code, (not an injected dll!). so my question is: 1. is it possible to debug with source code a remote create thread ?(CreateRemoteThread)
    any other issue with this when trying to do it remotely ? (I'm doing a remote debug with msvsmon.exe) ? or can I connect the source code my self in any way ? can a build with .bsc file make any different in helping the debugger find the source code of my
    injected thread ?
    Please any thoughts anyone ??
    Thanks

    JFYI Windbg:
    Debug-info can be loaded for whole - memory-mapped - modules ('sections' start at 'expected' RVAs), copied  manually (WriteProcessMemory) into address space of a process
    using '.reload /f module=address' (module then shows up in loaded-module-list 'lm'):
    Write image of module to file:
    CommandLine: "C:\Users\sammy\Documents\Visual Studio 2010\Projects\Injector\Debug\Injector.exe"
    Symbol search path is: C:\Windows\symbols\dll;srv*C:\Symbols\MsSymbols*http://msdl.microsoft.com/download/symbols
    Executable search path is:
    ModLoad: 00f10000 00f2b000 Injector.exe
    ModLoad: 77260000 77388000 ntdll.dll
    ModLoad: 76ff0000 770cd000 C:\Windows\system32\kernel32.dll
    ModLoad: 6a490000 6a603000 C:\Windows\system32\MSVCR100D.dll
    (e6c.1390): Break instruction exception - code 80000003 (first chance)
    eax=00000000 ebx=00000000 ecx=0024f778 edx=772c5d14 esi=fffffffe edi=00000000
    eip=772a878e esp=0024f790 ebp=0024f7c0 iopl=0 nv up ei pl zr na pe nc
    cs=001b ss=0023 ds=0023 es=0023 fs=003b gs=0000 efl=00000246
    ntdll!DbgBreakPoint:
    772a878e cc int 3
    0:000> .writemem c:\temp\injector.exe 00f10000 00f2afff
    Writing 1b000 bytes......................................................
    Allocate memory in other process, copy image, load pdb:
    CommandLine: "C:\Users\sammy\Documents\Visual Studio 2010\Projects\VectorWindbg\Debug\VectorWindbg.exe"
    Symbol search path is: C:\Windows\symbols\dll;srv*C:\Symbols\MsSymbols*http://msdl.microsoft.com/download/symbols
    Executable search path is:
    ModLoad: 00a40000 00a68000 VectorWindbg.exe
    ModLoad: 77260000 77388000 ntdll.dll
    ModLoad: 76ff0000 770cd000 C:\Windows\system32\kernel32.dll
    ModLoad: 6a490000 6a603000 C:\Windows\system32\MSVCR100D.dll
    ModLoad: 6a3d0000 6a487000 C:\Windows\system32\MSVCP100D.dll
    (15cc.8c0): Break instruction exception - code 80000003 (first chance)
    eax=00000000 ebx=00000000 ecx=0022f418 edx=772c5d14 esi=fffffffe edi=00000000
    eip=772a878e esp=0022f430 ebp=0022f460 iopl=0 nv up ei pl zr na pe nc
    cs=001b ss=0023 ds=0023 es=0023 fs=003b gs=0000 efl=00000246
    ntdll!DbgBreakPoint:
    772a878e cc int 3
    0:000> !sym noisy
    noisy mode - symbol prompts on
    0:000> .dvalloc 1b000
    Allocated 1b000 bytes starting at 00050000
    0:000> .readmem c:\temp\injector.exe 00050000 L0x1b000
    Reading 1b000 bytes......................................................
    0:000> .reload /f injector.exe=00050000
    DBGHELP: c:\windows\symbols\dll\Injector.pdb - file not found
    DBGHELP: c:\windows\symbols\dll\exe\Injector.pdb - file not found
    DBGHELP: c:\windows\symbols\dll\symbols\exe\Injector.pdb - file not found
    SYMSRV: c:\symbols\mssymbols\Injector.pdb\FE691049676443688BDF84F0EEE965552\Injector.pdb not found
    SYMSRV: http://msdl.microsoft.com/download/symbols/Injector.pdb/FE691049676443688BDF84F0EEE965552/Injector.pdb not found
    DBGHELP: injector - private symbols & lines
    C:\Users\sammy\Documents\Visual Studio 2010\Projects\Injector\Debug\Injector.pdb

  • Can't remote debug appliaction with jdeveloper10.1.3 deployed in JBoss 4.2

    can't remote debug appliaction with jdeveloper10.1.3 deployed in JBoss 4.2.2
    when i try to debugg with old version like jboss-4.0.3SP1 it is workking good
    but when i'm try to debugg with jboss-4.2.2.GA and add project newly libaray jboss client jars of this version i got error
    Exception in thread "main" java.lang.NoClassDefFoundError: in
    and the debugger stoped in URLClassLoader and throw NoClassDefFoundError exception, i think the reason is the client jars
    which jars should i add to project libarary to success remotely debugg application in jboss 4.2.2 GA ?

    Remote debugging with JBoss 4.2 is the same as for 4.0.
    http://www.oracle.com/webapps/online-help/jdeveloper/10.1.3?topic=rem_p_servlet_general_html

  • Patchset3 (11.1.1.4/wls 10.3.4) Remote debugging JDPA in weblogic cluster

    Hi,
    I am using Patchset3 (JDeveloper 11.1.1.4/ weblogic server 10.3.4). I was wondering how i can remote debug with
    a) weblogic managed server that is part of a weblogic cluster
    b) the cluster itself that contains multiple managed servers.
    Note that i do understand how to remote debug against a weblogic server (e.g. http://jdeveloperfaq.blogspot.com/2009/12/faq-4-how-to-remote-debug-adf.html), but have not been able to find out how i can achieve this against a cluster that has multiple managed servers. Any directions will be appreciated.
    Thanks,

    Hi,
    haven't tried it but here are some suggestions that might be of help:
    1) Each managed server for each cluster node should be setup for remote debugging. This means that each managed server must be started with the -Xdebug -Xnoagent -Xrunjdwp:transport=dt_socket,address=4000,server=y,suspend=n* options in the WebLogic start-up script. Also Tunneling must be enabled for each managed server for each cluster node.
    2) Make sure that you specify a different connection port for each managed server. This is indicated by the address* specifier above.
    3) It seems logical to me that you will need to start separate instances of JDeveloper - one for each managed server that you need to attach to.
    Let us know how it turns out,
    Nick

  • Remote Debugging w/Eclipse Transport Error

    I am requesting help on a problem I am encountering using remote debugging with eclipse and Weblogic 8.1.2. I have successfully used remote debugging in the past with other application servers, but I have been unsuccessful with Weblogic 8.1.
    I have set the remote debugging options both on the weblogic start script as well as configured eclipse to connect to the port that was defined in the startup script (See Below). When I start the remote debugger within eclipse and it seems to connect properly. Once I set a break point or remove a break point, weblogic generates a "Transport error, error code = -1" and stops the debugger with in Eclipse.
    At this point I am at a loss of what is causing this error. I would appreciate any help on this issue.
    Operating System: WindowsXP Pro
    Weblogic Version: 8.1.2
    Eclipse 3.2
    JDK 1.4.2
    JAVA_OPTS: =-Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,address=7777,server=y,suspend=n
    Thanks!
    Rafael Salazar

    Interesting. I tried it and it works. you might want to check your Eclipse port number. In addition try netstat -a to see if port 1044 is active.
    This one might also help: http://www.jacoozi.com/index.php?option=com_content&task=view&id=119&Itemid=134
    Let me know if you have any questions.

  • Remote debugging through NAT - VS2013, C#

    I need help figuring out how to initiate a remote debugging session when the target computer is across the internet and behind NAT. VS2013 and a C# application, .net 4.5
    Remote debugging works great here on my LAN, but now I need to connect to a remote stand alone (not on a domain) PC that is behind NAT; it's WAN IP is different from its LAN IP.  My development PC is also behind NAT.  I do not have access to the
    remote firewall/router to configure port forwarding.  Is there any other way I can connect?  Are there any tools that will allow me to connect directly to the remote PC with the remote debugger, similar to how TeamViewer can connect to PC's even
    though they're behind NAT? 

    Hi Matt_FL,
    Like this document here:
    http://www.codeproject.com/Tips/618804/Remote-debugging-for-Visual-Studio-from-different
    It shared us the detailed steps about how we setup the remote debugging if the Environments are not in the same domain.
    So I'm afraid that we would check whether the Environments meet the requirements of remote debugging.
    Reference:
    https://msdn.microsoft.com/en-us/library/vstudio/bt727f1t%28v=vs.100%29.aspx?f=255&MSPPError=-2147217396#bkmk_setuptheremotecomputer
    If the remote computer is protected by a firewall, you must configure the firewall to allow the Remote Debugging Monitor to communicate with the Visual Studio host computer.
    If your network requires that communication be performed using IPSec, you must open additional ports in the firewall.
    If you are debugging a process on a web server, you must open an additional port.
    Other threads I met before:
    https://social.msdn.microsoft.com/Forums/vstudio/en-US/0058a97a-8595-4235-88b1-7575aed2e2de/remote-debug-issuevisual-studio-remote-computer-can-not-back-connect-to-remote-computera-firewall?forum=vsdebug
    https://social.msdn.microsoft.com/Forums/vstudio/en-US/897782e5-dada-4df1-8ef2-f119cdce7e5e/remote-debugging-over-internetMaybe
    you could refer to them, hope it could provide useful information.
    But as far as I know, we could remote debugging with WAN even if it has some specific requirements.
    Reference:
    http://stackoverflow.com/questions/5091207/net-remote-debugging-domain-networking-issues
    If I have misunderstood this issue, please feel free to let me know.
    Best Regards,
    Jack
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

Maybe you are looking for

  • [Solved] I can't get vim to save my selected colour theme

    Have pity upon a Vim acolyte!  I have looked through the Arch Wiki documentation and I have completed vim's excellent "vimtutor" program.  Both have been immensely helpful but I still have these issues and I'm not sure where to look for the solutions

  • Making fields required based on other field input

    I am creating a form in adobe acrobat pro that employees need to fill in to show the clients they have worked for in a week. The form has 10 lines for them to fill in the date, client name, address etc for 10 clients. I want to make the client name a

  • Dreamweaver previews first Server Side Include Only (SSI)

    Dreamweaver CC and 2014 preview the first Server Side Include (SSI) only, even if the Adobe extension is installed (Using the SSI extension in Dreamweaver to create page headers | Adobe Developer Connection) How do I set Dreamweaver to preview multip

  • Ipod refuses to "update"

    i've downloaded the newest update from the web site for my ipod+video, but when i try to run the update program from itunes, i receive the message, "The ipod, "Ashle's ipod" couldn't be updated. The required file cannot be found." Where can I get the

  • CSV Ouput Link Position

    All, I have a very large report with about 50 columns and I want the user to be able to export the data in CSV format via the standard link. I have enabled this and the link appears and work fine. My problem is that the link is on the right and the u