Reputation: 33
I have an RCP headless application. When running it, some errors can occur. I want to display them into the same cmd.exe from which I run the application. I search the internet but I couldn't find any solution, do you have any ideas?
Thanks.
Upvotes: 0
Views: 213
Reputation: 34135
For this purpose there is on Windows the executable eclipsec
. The c
at the end means console.
When you create an RCP application you will get two executables on Windows, <my-application>.exe
and eclipsec.exe
. If you have a headless application to be run on the command line only (as in your case), delete <my-application>.exe
and rename eclipsec.exe
to <my-application>.exe
.
See also this mailing list post.
Upvotes: 1