0

I want to define my own extension for that I am learning existing extension plugin from https://github.com/eclipse/che/tree/master/samples/sample-plugin-json.

How to debug the Eclipse Che Plugin from Eclipse?

I can attach remote debugger to workspace agent server and port but debug pointer doesn't get hit, any pointer will be helpful?

Chetan Laddha
  • 993
  • 8
  • 22

1 Answers1

0

As Che deploy the extension to wsagent. For every wsagent we get new port.

If we switch to "Operation Perspective", we can see the wsagent debug port. From IDE/eclipse, we need to remotely connect to this port.

Operation Perspective

We need to listent to that port in IDE: enter image description here

By following above steps, our extension gets the call.

Chetan Laddha
  • 993
  • 8
  • 22