Debugging eclipse with eclipse -


i debug eclipse view available in latest neon release. found class responsible view's behavior via plugin-inspector (alt+shift+f1 on mouseover). followed this question (and similar articles too) debug 1 eclipse instance another.

i did following steps:

  1. i launch eclipse instance want debug
  2. i launch eclipse instance
  3. i open debug configurations view
  4. i create new remote java application configuration fill host 'localhost' , port '1044'
  5. i click debug , error "failed connect remote vm. connection refused. connection refused:connect"

what doing wrong?

additions:

eclipse.ini in step 1

-vm i:/prep_ide_win_test/tools/jre/jre/bin/javaw.exe -startup plugins/org.eclipse.equinox.launcher_1.3.200.v20160318-1642.jar --launcher.library plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.1.400.v20160518-1444 -product org.eclipse.epp.package.rcp.product --launcher.defaultaction openfile -showsplash org.eclipse.platform --launcher.defaultaction openfile --launcher.appendvmargs -vmargs -xdebug -xrunjdwp:transport=dt_socket,server=y,suspend=n,address=1044 -dosgi.requiredjavaversion=1.8 -xx:+useg1gc -xx:+usestringdeduplication -dosgi.requiredjavaversion=1.8 -xms256m -xmx1024m 

eclipse.ini in step 2

-vm i:/prep_ide_win_test/tools/jre/jre/bin/javaw.exe -startup plugins/org.eclipse.equinox.launcher_1.3.200.v20160318-1642.jar --launcher.library plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.1.400.v20160518-1444 -product org.eclipse.epp.package.rcp.product --launcher.defaultaction openfile -showsplash org.eclipse.platform --launcher.defaultaction openfile --launcher.appendvmargs -vmargs -dosgi.requiredjavaversion=1.8 -xx:+useg1gc -xx:+usestringdeduplication -dosgi.requiredjavaversion=1.8 -xms256m -xmx1024m 

launching debug configuration dbg conf

an error

error

//edit: looking functionality of button in eclipse welcome screen: enter image description here

create new eclipse application configuration instead, debug that.


Comments

Popular posts from this blog

magento2 - Magento 2 admin grid add filter to collection -

Android volley - avoid multiple requests of the same kind to the server? -

Combining PHP Registration and Login into one class with multiple functions in one PHP file -