Progress10.1B Debugger in Unix

ruan007

New Member
Has anyone used progress debugger in Unix?

I entered the proDebugger command and it gave me this message:

OpenEdge Release 10.1B03 as of Fri Nov 2 22:11:46 EDT 2007
You must set the DISPLAY variable before running the Debugger.

How do I set the DISPLAY variable, Any ideas.

Thanks in advance.
 

rstanciu

Member
First enable the debugging:

$: proDebugEnable -enable-all

start the Debugger in Graphical mode on unix:

$: proDebugger

and ... attach to process ...

If you have not a Graphical Mode on UNIX you can not use the debugger because is writen
en Java GUI. If you have a Linux Desktop you can use
$: X -query serverIP :2

... but on windows you can't because you have not a X server.
You can try on windows to debugg remote. You take the proDebugger on a windows
proenv console and try to attach the to process ... remote ...
 

ruan007

New Member
I see. It's an AIX box, no graphical mode. Guess I will have to use wondows debuger and attach the remote process to it.

Thanks for the clarification.

Cheers
 
Top