If VS 2008 'Remote Debugger' is added to an existing VS 2008 install, should VS 2010 first be uninstalled?

I found that Visual Studio 2008 Remote Debugger was not included when Visual Studio 2008 was installed.  I also have Visual Studio 2010 installed.  Should Visual Studio 2010 be uninstalled prior to installing Visual Studio 2008
Remote Debugger?
Thanks

Hi Bontrager,
Based on your issue, I know that since the different Visual Studio versions exist as separate applications. So if you want to install the Visual Studio 2008 Remote Debugger, you will not need to uninstall Visual Studio 2010.  Visual Studio 2010 will
not affect you install the Visual Studio 2008 Remote Debugger.
Hope it help you!
Best Regards,
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.

Similar Messages

  • Substitution not carried out when WBS is added to an existing project......

    Hi, I have created a substitution rule to substitute the investment profile in my projects with a blank for any WBS which is not level one.   I am not sure why this rule does not take effect immediately a new WBS is included.  When I try to carry out the substitution manually, I get the error message 'Error when processing asset under construction (AuC) for WBS element'. Any ideas how I can get this substituion to work when a new WBS is added to an existing project?

    You should use the substitution otherway....
    I believe your project is in REL status and also you have defaulted IM profile in the project, so whenever you create a WBSE, the IM profile is inherited to the WBSE and since it is in REL status, the system will create an AUC based on your IM profile and now you are using substituition to remove the IM profile so this will cause the problem...Instead of this....try this...do not default IM profile in project, and instead of removing IM profile for all WBSE which is not level 1, use substitution to write IM profile in WBSE which is only level 1.

  • *** FREE REMOTE DEBUGGER UTILITY ***

    I just created this "remote debugger" last week because I wanted to get runtime output from my servlets without having to resort to finding the server logs...scanning them...etc. It can also be used to log info locally. Here is the code for the screen logger:
    package com.mycode.remotedebugger.applet;import javax.swing.*;import java.awt.*;import java.awt.event.*;import java.net.*;import java.io.*;public class CRemoteDebugger extends JApplet implements Runnable{   boolean isStandalone         = false;   static ServerSocket m_socket = null;   JScrollPane jScrollPane1     = new JScrollPane();   static Thread runner         = null;   static Socket connection     = null;   BorderLayout borderLayout1   = new BorderLayout();   JTextArea jTextArea1         = new JTextArea();   /**    * Constructs a new instance.    */   /**    * getParameter    * @param key    * @param def    * @return java.lang.String    */   public String getParameter(String key, String def) {      if (isStandalone) {         return System.getProperty(key, def);      }      if (getParameter(key) != null) {         return getParameter(key);      }      return def;   }   public CRemoteDebugger() {   }   /**    * Initializes the state of this instance.    */   /**    * init    */   public void init() {      try  {         jbInit();      }      catch (Exception e) {         e.printStackTrace();      }   }   public boolean isConnected()   {      return m_socket != null;   }   private void jbInit() throws Exception   {      this.setSize(new Dimension(400, 400));      this.getContentPane().add(jScrollPane1, BorderLayout.CENTER);      jScrollPane1.getViewport().add(jTextArea1, null);      runner = new Thread(this);      runner.start();   }   public void run()   {      try {         m_socket = new ServerSocket(6666);         while(true)  {            InetAddress ia = InetAddress.getLocalHost();            connection = m_socket.accept();            InputStream is = connection.getInputStream();            BufferedReader br = new BufferedReader(new InputStreamReader(is));            String strLine = br.readLine();            while(strLine != null)  {               jTextArea1.append(strLine + "\n");               jTextArea1.setCaretPosition(jTextArea1.getDocument().getLength());               strLine = br.readLine();            }         }      } catch(Exception e)  {      }   }   /**    * start    */   public void start() {     setLookAndFeel();   }   /**    * stop    */   public void stop() {   }   /**    * destroy    */   public void destroy() {    if(m_socket != null)  {      try  {         m_socket.close();      } catch (IOException ioe)  {      }      m_socket = null;    }    if(runner != null)      runner = null;    if(connection != null)  {      try {         connection.close();      } catch(IOException ioe)  {      }         connection = null;    }   }   /**    * getAppletInfo    * @return java.lang.String    */   public String getAppletInfo() {      return "Applet Information";   }   /**    * getParameterInfo    * @return java.lang.String[][]    */   public String[][] getParameterInfo() {      return null;   }   /**    * main    * @param args    */   public static void main(String[] args) {      CRemoteDebugger applet = new CRemoteDebugger();      applet.isStandalone = true;      JFrame frame = new JFrame();      frame.setTitle("Remote Debugging");      frame.getContentPane().add(applet, BorderLayout.CENTER);      applet.init();      applet.start();      frame.setSize(400, 420);      Dimension d = Toolkit.getDefaultToolkit().getScreenSize();      frame.setLocation((d.width - frame.getSize().width) / 2, (d.height - frame.getSize().height) / 2);      frame.setVisible(true);      frame.addWindowListener(new WindowAdapter() {        public void windowClosing(WindowEvent e) {          if(m_socket != null)  {             try  {                m_socket.close();             } catch (IOException ioe)  {             }             m_socket = null;          }          if(runner != null)            runner = null;          if(connection != null)  {             try {               connection.close();          } catch(IOException ioe)  {          }          connection = null;        }           System.exit(0);        }      });   }   void setLookAndFeel(){      try {         UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());      }      catch(Exception e) {         e.printStackTrace();      }   }}
    I compiled this and put it into a jar file for easy running via a shortcut on my desktop.
    Here is the static function you would put either in your application/applet or perhaps in some utility class that you import:
    package com.mycode.common.utilities;import java.awt.*;import java.awt.event.*;import java.net.*;import java.io.*;public class RemoteDebugMessage{   static Socket m_socket            = null;   static PrintWriter serverOutput   = null;   /**    * Constructor    */   public static void Print(String strClient, int nPort, String strMessage)   {      try {         m_socket = new Socket(strClient,nPort);         if(m_socket != null)  {            OutputStream os = m_socket.getOutputStream();            if(os != null)  {               serverOutput = new PrintWriter(new BufferedOutputStream(m_socket.getOutputStream()),true);               if(serverOutput != null)  {                  serverOutput.println(strMessage);               }            }         }      } catch(IOException ioe)  {      }      try {         m_socket.close();         m_socket = null;         serverOutput = null;      } catch(IOException ioe)  {      }   }}
    The "server" side listens on port 6666 (you can always change to whatever port you like and recompile) Then, in your code where you wish to watch messages in realtime, you call the static function above:
    RemoteDebugMessage.Print("MachineName",6666,"This is my message!");
    Where "MachineName" is the name of your pc.

    Thank god for the scrollbars. :)
    Maybe you should repost and add proper newlines.

  • How to kill remote debugger listener...?

    Hi,
    Is there a way to kill the remote debugger listener, without closing the sql-developer (1.5.5)...?
    Because it hangs sometimes and I have to establish a new port and a new port ...
    Thanks, Juergen

    You can't.
    I complained about this too a couple of years ago, management acknowledged the issue, but still no sign of wanting to enhance the behaviour.
    Only solution I know is restart sqldev.
    Best add this as feature request at the SQL Developer Exchange, so other users can vote to add weight for possible future implementation.
    Regards,
    K.

  • Multiple remote debugger connections from JDev

    Hello,
    I'm running JDev Studio Edition Version 11.1.2.3.0
    I need to debug an application running on a 2 node WLS Cluster. I have the two servers running in debug mode listening on different hosts/ports.
    In JDev I click the debug button twice and open a connection to each server in turn, however I suspect that the last connection made may be the only one that's active?
    Can somebody please clarify whether it's possible to open multiple remote debugger connections in JDev?
    Many thanks.

    Hello,
    I'm running JDev Studio Edition Version 11.1.2.3.0
    I need to debug an application running on a 2 node WLS Cluster. I have the two servers running in debug mode listening on different hosts/ports.
    In JDev I click the debug button twice and open a connection to each server in turn, however I suspect that the last connection made may be the only one that's active?
    Can somebody please clarify whether it's possible to open multiple remote debugger connections in JDev?
    Many thanks.

  • Remote debugger

    Hi, I am looking for a remote debugger for a Java application. Does anyone have any advice ? Thanks.

    Hi Meggie,
    try to use JBuilder 4 (or even higher) because this IDE has everything you need. You can even debug EJBs remotely with it.
    Gabe

  • Visual Studio cannot remote debug Azure cloud service: There was a failure to launch the remote debugger

    I am trying to invoke remote debugger on an Azure worker role cloud service, following the example of
    http://msdn.microsoft.com/en-us/library/azure/ff683670.aspx
    But on attaching the remote debugger for the cloud service instance
    Microsoft Visual Studio
    There was a failure to launch the remote debugger.
    OK  
    According to somebody else's extra coverage on the topic, there are extra ports 4016/4017 that need to be taken care of (but do they have to be exposed externally)?
    http://developers.de/blogs/damir_dobric/archive/2014/02/04/behind-windows-azure-remote-debugger.aspx
    So servicedefinition.csdef gets
        <Endpoints>
          <InputEndpoint name="Endpoint1" protocol="http" port="80" />
          <InputEndpoint name="RemoteDebugger" protocol="tcp" port="4016" localPort="4016" />
          <InputEndpoint name="RemoteDebugger2" protocol="tcp" port="4017" localPort="4017" />
          <InstanceInputEndpoint name="Microsoft.WindowsAzure.Plugins.RemoteDebugger.Connector" protocol="tcp" localPort="30398">
            <AllocatePublicPortFrom>
              <FixedPortRange min="30400" max="30424" />
            </AllocatePublicPortFrom>
          </InstanceInputEndpoint>
          <InstanceInputEndpoint name="Microsoft.WindowsAzure.Plugins.RemoteDebugger.Forwarder" protocol="tcp" localPort="31398">
            <AllocatePublicPortFrom>
              <FixedPortRange min="31400" max="31424" />
            </AllocatePublicPortFrom>
          </InstanceInputEndpoint>
        </Endpoints>
    Serviceconfiguration.cscfg gets
          <Setting name="Microsoft.WindowsAzure.Plugins.RemoteDebugger.Connector.Enabled" value="true" />
          <Setting name="Microsoft.WindowsAzure.Plugins.RemoteDebugger.Connector.Version" value="2.3" />
          <Setting name="Microsoft.WindowsAzure.Plugins.RemoteDebugger.ClientThumbprint" value="THUMBNAIL" />
          <Setting name="Microsoft.WindowsAzure.Plugins.RemoteDebugger.ServerThumbprint" value="THUMBNAIL" />
        </ConfigurationSettings>
        <Certificates>
          <Certificate name="Microsoft.WindowsAzure.Plugins.RemoteDebugger.TransportValidation" thumbprint="THUMBNAIL" thumbprintAlgorithm="sha1"
    />
        </Certificates>
    But all these are to no avail; the same error still pops for Visual Studio 2013 Update 4; Azure SDK 2.3
    Anybody regularly perform remote debugging for Azure cloud services?
    The melody of logic will always play out the truth. ~ Narumi Ayumu, Spiral

    And, how do I control that in Visual Studio?
    All I get is the Attach Debugger... context menu option in the Azure cloud service nodes in Server Explorer. That is where it is failing. There are no customisable options.
    Because of that, the Attach to Process dialog box is unable to retrieve the list of processes (to debug) in the remote worker role instance server.
    I tested a blank-template worker role project and published to a new cloud project, and this simplistic copy had no problems with the Remote debugger.
    Now the question is, what is it about this real-world project/cloud service that is different from blank sample? From what I compare between what I think are the relevant settings, there are none.
    ServiceDefinition.csdef
    <Imports>
    <Import moduleName="Diagnostics" />
    <Import moduleName="RemoteAccess" />
    <Import moduleName="RemoteForwarder" />
    <Import moduleName="RemoteDebuggerConnector" />
    </Imports>
    <Contents>
    <Content destination=".\">
    <SourceDirectory path="D:\Projects\experiments\workerrole1\workerrole1\rcf\Debug\RemoteDebuggerContent\" />
    </Content>
    </Contents>
    <Endpoints>
    <InstanceInputEndpoint name="Microsoft.WindowsAzure.Plugins.RemoteDebugger.Connector" protocol="tcp" localPort="30398">
    <AllocatePublicPortFrom>
    <FixedPortRange min="30400" max="30424" />
    </AllocatePublicPortFrom>
    </InstanceInputEndpoint>
    <InstanceInputEndpoint name="Microsoft.WindowsAzure.Plugins.RemoteDebugger.Forwarder" protocol="tcp" localPort="31398">
    <AllocatePublicPortFrom>
    <FixedPortRange min="31400" max="31424" />
    </AllocatePublicPortFrom>
    </InstanceInputEndpoint>
    </Endpoints>
    ServiceConfiguration.cscfg
    <ConfigurationSettings>
    <Setting name="Microsoft.WindowsAzure.Plugins.Diagnostics.ConnectionString" value="DefaultEndpointsProtocol=https;AccountName=storage;AccountKey=" />
    <Setting name="Microsoft.WindowsAzure.Plugins.RemoteAccess.Enabled" value="true" />
    <Setting name="Microsoft.WindowsAzure.Plugins.RemoteAccess.AccountUsername" value="" />
    <Setting name="Microsoft.WindowsAzure.Plugins.RemoteAccess.AccountEncryptedPassword" value="" />
    <Setting name="Microsoft.WindowsAzure.Plugins.RemoteAccess.AccountExpiration" value="2015-12-31T23:59:59.0000000+08:00" />
    <Setting name="Microsoft.WindowsAzure.Plugins.RemoteForwarder.Enabled" value="true" />
    <Setting name="Microsoft.WindowsAzure.Plugins.RemoteDebugger.Connector.Enabled" value="true" />
    <Setting name="Microsoft.WindowsAzure.Plugins.RemoteDebugger.Connector.Version" value="2.4" />
    <Setting name="Microsoft.WindowsAzure.Plugins.RemoteDebugger.ClientThumbprint" value="" />
    <Setting name="Microsoft.WindowsAzure.Plugins.RemoteDebugger.ServerThumbprint" value="" />
    </ConfigurationSettings>
    <Certificates>
    <Certificate name="Microsoft.WindowsAzure.Plugins.RemoteAccess.PasswordEncryption" thumbprint="" thumbprintAlgorithm="sha1" />
    <Certificate name="Microsoft.WindowsAzure.Plugins.RemoteDebugger.TransportValidation" thumbprint="" thumbprintAlgorithm="sha1" />
    </Certificates>
    The melody of logic will always play out the truth. ~ Narumi Ayumu, Spiral

  • When I started my Mac the screen was white with the Apple logo and power motion icon running.  I attempted to turn off Mac then a message stating "Debugger called:  Button SCI . Also "Waiting for remote debugger connection."  What is my next step?

    When I started my Mac the screen was white with the Apple logo and power motion icon running.  I attempted to turn off Mac then a message stating "Debugger called:  <Button SCI>. Also "Waiting for remote debugger connection."  What is my next step?

    Hi , and a warm welcome to the forums!
    Could be many things, we should start with this...
    "Try Disk Utility
    1. Insert the Mac OS X Install disc, then restart the computer while holding the C key.
    2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu at top of the screen. (In Mac OS X 10.4 or later, you must select your language first.)
    *Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.*
    3. Click the First Aid tab.
    4. Select your Mac OS X volume.
    5. Click Repair Disk, (not Repair Permissions). Disk Utility checks and repairs the disk."
    http://docs.info.apple.com/article.html?artnum=106214
    Then try a Safe Boot, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, reboot when it completes.
    (Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive.)
    If perchance you can't find your install Disc, at least try it from the Safe Boot part onward.
    If 10.7.0 or later...
    Bootup holding CMD+r, or the Option/alt key to boot from the Restore partition & use Disk Utility from there to Repair the Disk, then Repair Permissions.
    And sorry to report that OSX is more Widows like than ever, but….
    If that doesn't help Reinstall the OS.

  • Is it possible to set up a form with a submit button where the data in the fields gets added to an existing excel file, just like 'collect response' but without connecting to the internet?

    I have a form that I want to use to collect peoples information with a submit button. I am trying to get the data that gets inserted to be added to an existing excel doc when the submit button gets hit, the form then resets and someone else can fill in the same form, hit submit and his data gets added to the existing data in the same excel doc. It is basically the same as the 'collecting response' option but without having to be online. The form is going to be used at a boat-show and I am going to get people to fill it out on an iPad. Does anybody know if this is possible?

    You could connect a bunch of 3700s to each computer and do this . 
    Or...since you're the one who monitors the monthly limit, you could restrict an individual's internet access once you see that you guys are coming too close to the cap. 
    I don't work for Cisco. I'm just here to help.

  • TS1741 I have lost the original remote for my Apple TV. I went to install it at my fiancés house, and cannot use the remote app on my ipad or iPhone. Can I still control the Apple TV with the apps?

    I have lost the original remote for my Apple TV. I went to install it at my fiancés house, and cannot use the remote app on my ipad or iPhone. Can I still control the Apple TV with the apps?

    Welcome to the Apple Community.
    Your Apple TV may have become paired with another remote. Hold the remote close to and pointed at the Apple TV, hold down the menu and Rewind buttons together for 6 seconds or until you see a broken chain icon on screen.

  • If my Iphone 4 was stolen and I want to delete text and email messages remotely but do not have the moblie me app installed, how can I do it?

    I have an Iphone that was stolen and I want to delete all text messages remotely, but do not have the mobile me app installed.  How do I do this?

    You don't. Change all your passwords, tell you provider, tell the police, tell your insurance company.

  • Adding field to existing report

    How can we add a new field to the Query for a report?

    Can please someone share, for adding new field to the SAP Query, should we change the infoset or query?
    For detailed question please see below:
    via Tcode SQ01, I tried to modified Infoset, by right click, I added missing field on the right hand side of the screen, hit saved. Then it asked me do you want to generate infoset, clicked "Yes".
    Then I got these Yellow errors:
    Identification of Text Fields
    Text Field for P0210 u2013 FRMNR could not be identified any longer
    Text Field for P0315-EBELN changed:
    Reference Field in DDIC: EKKO-DESCRIPTION
    Reference Field in Infoset: EKKO-VERKF
    Length in ABAP Dictionary: 040
    Length in Infoset: 030
    Output Length in Dictionary: 040
    Output Length in Infoset:030
    I am not sure, if I needed to change infoset/Query, please advise.

  • I installed visual studio 2010 in my windows 8.1 system.during the installation sql server 2008 r2 features were installed.so which version of sql server i need to install(2008 or 2008 r2)?

    hi,
    I installed visual studio 2010 in my windows 8.1 system.during the installation sql server 2008 r2 features were installed.so which version of sql server i need to install(2008 or 2008 r2)?
    regards,
    harsha.

    My guess is SQL Server 2008 R2.
    Check the following KB article for details:
    http://support.microsoft.com/kb/2681562
    Kalman Toth Database & OLAP Architect
    SELECT Video Tutorials 4 Hours
    New Book / Kindle: Exam 70-461 Bootcamp: Querying Microsoft SQL Server 2012

  • Adobe CS3 - Server 2008 Install Error

    I am in the process of transitioning our organization to a cloud server running Windows Server 2008 x64. I would like to be able to install Creative Suite 3 Design Premium on the new server. I have attempted the install but get the following error at the beginning before the installation will ever really get started "Critical errors were found in setup. Please see the setup log for details". Therefore, I am not able to even start the install.
    I have tried for several hours to research on the web but have not found any definite answer. It does appear that CS3 is not supported by Adobe on Server 2008. Has any one had any luck getting it to install properly on Server 2008? If not CS3, will any of the newer version work on Server 2008 should I choose to upgrade to a newer Adobe product?
    Thank you in advance for any assistance that might be provided. I greatly appreciate it.
    Todd

    Thank you very much for your assistance. I really appreciate it.
    Todd
    Mylenium <[email protected]> wrote:
    Mylenium http://forums.adobe.com/people/Mylenium created the discussion
    "Re: Adobe CS3 - Server 2008 Install Error"
    To view the discussion, visit: http://forums.adobe.com/message/4115952#4115952

  • Unable to install Forfront TMG 2010 on Server 2008 R2 with Service Pack1

    Hi I am  Installing TMG 2010 on Server 2008R2 with service pack 1 ... then I am getting the error as below snapshot...kindly help me out
    and I 've check event log then please find below snapshot :

    Hi,
    It seems that you have created an similar thread below:
    Unable to install Forfront TMG 2010 on Server 2008 R2 with SP1    
    Since you have installed Service Pack 1 for Windows Server 2008 R2, please refer to the KB below:
    Event ID 10 is logged in the Application log after you install Service Pack 1 for Windows 7 or Windows Server 2008 R2
    If the solutions in the thread above are not helpful, please feel free to contact us.
    Best regards,
    Susie                  

Maybe you are looking for

  • I have an additional row that is empty under my tabs in Safari 5.1 that I can't get rid of.

    The bar right under the tabs is empty and just taking up screen real estate. It isn't so bad on my desktop monitor, but when I'm just using the laptop screen it is a lot of lost screen space. I have only noticed it over the past couple of days, and I

  • Can't render background color in JComboBox, after selection.

    I don't understand why this problem is so difficult. It is driving me nuts. If I create a renderer for a Jcombobox, it will correctly render TEXT and COLOR if it is displaying it in the pop up list, but as soon as it has been selected, the combo will

  • Trusted Reconciliation in OIM 11g

    Hi I have written custom scheduler task in OIM 11g which will retrieve values from database and call recon API's to create users in OIM. Database Table contains the following sample values FIRSTNAME:RECON LASTNAME:USER1 USERLOGIN:RUSER1 ORGANIZATION:

  • Service for Object - MM01/MM02/MM03

    We have activated u201Carchive linku201D to ECM (IBM FileNet Application Connector for SAP® R/3® (ACSAP R/3) for business object for material master transactions (MM01/MM02/MM03), so the images associated with material master can be stored in FileNet

  • Problem while installing windows xp 32bit on mbp

    hi i just purchased a early 2011 model macbook pro 13inch and was trying to install the windows xp 32bit on it using boot camp however as the installation processes where it shuts down to install the windows it comes up with a black screen with the m