Re: [Erlide-devel] [Erlide-bugs] Unable to run Hello World program using Erlide plugin within Eclipse

2010-08-24 Thread Vlad Dumitrescu
Hi! On Tue, Aug 24, 2010 at 20:57, Kay Münch wrote: > the short name is just 'e' in my run configuration, the long > name '[email protected]' using the output from hostname -f. >> Regarding the "no output", I guess that your example code is basically >> io:format("hello world~n") > > It does

Re: [Erlide-devel] [Erlide-bugs] Unable to run Hello World program using Erlide plugin within Eclipse

2010-08-24 Thread Kay Münch
Hi Vlad, Am Dienstag, 24. August 2010 09:02 schrieb Vlad Dumitrescu: > Regarding the difference between long and short name, I think there > might be an issue with your hostname settings. the short name is just 'e' in my run configuration, the long name '[email protected]' using the output f

Re: [Erlide-devel] Fwd: Integrating tracing tool with erlide

2010-08-24 Thread Piotr Dorobisz
Hi, Now everything works - I can start new node on which I start tracing tool (ttb) and this tool can connect to other nodes to trace them. In this way I will be able to trace few nodes instead of one. Only think I'm missing now is starting new node as hidden. Is it possible, how can I do it? re

Re: [Erlide-devel] Fwd: Integrating tracing tool with erlide

2010-08-24 Thread Vlad Dumitrescu
On Tue, Aug 24, 2010 at 15:51, Piotr Dorobisz wrote: > Finally I managed to start a new node with "-sname":) > First of all you were right - I didn't need to call this: > ErlangCore.getBackendManager().createBackend(info, options, launch, null); Hi, Yes, I was a little confused myself that there

[Erlide-devel] Fwd: Integrating tracing tool with erlide

2010-08-24 Thread Piotr Dorobisz
Hi, Finally I managed to start a new node with "-sname":) First of all you were right - I didn't need to call this: ErlangCore.getBackendManager().createBackend(info, options, launch, null); The problem with creating node with sname was in my method getLaunchConfiguration, which I copied from Ba

Re: [Erlide-devel] Integrating tracing tool with erlide

2010-08-24 Thread Piotr Dorobisz
Hi, At the end of createIdeBackend() there is a line: ideBackend = createBackend(info, options, null); createBackend: private ErlideBackend createBackend(final RuntimeInfo info, final Set options, Map env) throws BackendException {

Re: [Erlide-devel] Integrating tracing tool with erlide

2010-08-24 Thread Vlad Dumitrescu
On Tue, Aug 24, 2010 at 13:13, Piotr Dorobisz wrote: > Hello, > I wrote method to create my own node (actually I did it very similar to > BackendManager.getIdeBackend()). However, the problem is that this node is > started with long name (-name parameter) instead of short one. It happens > desp

Re: [Erlide-devel] Integrating tracing tool with erlide

2010-08-24 Thread Piotr Dorobisz
Hello, I wrote method to create my own node (actually I did it very similar to BackendManager.getIdeBackend()). However, the problem is that this node is started with long name (-name parameter) instead of short one. It happens despite setting info.useLongName(false). What else can I do? Btw, wh