Difference between revisions of "WDSC tips/DEBUG"

From MidrangeWiki
Jump to: navigation, search
(debugging other profiles)
(debug a RPG table)
Line 85: Line 85:
 
Check QUSRWRK subsystem is active. STRDBGSVR submitted job goes to the queue QUSRNOMAX.
 
Check QUSRWRK subsystem is active. STRDBGSVR submitted job goes to the queue QUSRNOMAX.
 
Started the subsystem and all is well.
 
Started the subsystem and all is well.
 +
 +
Return to [[#TOP]]
 +
 +
===Displaying the Contents of a Table===
 +
original post  [[http://archive.midrange.com/wdsci-l/200807/msg00044.html]]
 +
 +
In the Monitor View,  click on the Plus icon to bring up Monitor Expression dialog.
 +
 +
Type  "TABPRV(1..9)"  in the entry field.
 +
  
 
Return to [[#TOP]]
 
Return to [[#TOP]]

Revision as of 07:29, 12 August 2008

Debug and SEP Service Entry Points

original post [1] (the post contains a lot of other information)

  • In Iseries Table View
  • Right Click on the Source
  • Select Debug(service Entry)/Set Service Entry Point
  • Next Panel Click OK (I have not done Service Programs)
  • If you get a 'Iseries Debug Message has not been started yet' message, follow the instruction, then try again.
  • When the SEP is is set click OK.
  • Run the program, however you normally would, eg. call, menu option, whatever.
  • You need to run the program under the User Profile in the SEP
  • If you change the Profile in the SEP your profile needs to have *USE rights to the profile running the job and your profile should have *SERVICE special authorities.
Check Service Entry Point, if you need to change the user profile of the SEP.
  • The WDSC Debug view should pop up and you can set breakpoints view variables etc. etc. check Interactive Debugger

Return to #TOP

Clear Breakpoints

original post [2]

  • In the Debug perspective
  • Click the Breakpoints tab
  • There is an icon, (looks like a double X) to remove all Breakpoints

You can manage ALL of your breakpoints across multiple programs and multiple languages, both on the client and on the server. You can enable and disable them, as well as remove them entirely.

Return to #TOP

Field Values

original post [[3]]

  • Window -> Preferences -> Run/Debug -> Compiled Debug
  • Check Tick, 'Always use Debugger Editor while debugging'

FWIW I also Check Tick

  • Allow hover evaluation
  • Double-Click in Debugger Editor to add monitored expression
  • Centre view on execution line

(FKOL 21:17, 4 February 2008 (CST))

In V6.0, the debugger started to use iSeries Editor as the default editor to display the source. The fly over expression evaluation was available in OPM RPG, ILE RPG and ILE COBOL.

Thanks to Don Yantzi, to have hover evaluation work for CL programs, switch to the listing view or use the debug editor instead of the RSE Lpex editor.

Return to #TOP

Debug Breakpoints not breaking

original post [[4]]

When Debugging, also when debugging SQLRPGLE

  • Use listing view
  • Turn off all caching. Window -> Preferences -> Remote systems -> File Cache, ______ Click 'Clear cached files'
  • Window -> Preferences -> Remote systems -> iSeries -> Cache, ______ Check 'disable caching' and click on the 'Clear cache' button.
  • Refresh the table view often, especially before setting the SEP.

Return to #TOP

Debug a crashed Job

original post [[5]]


  • In the Remote Systems view
  • Find the job under iSeries Jobs
  • Right-click the job and select Debug As.

The easiest eay is to right-click on an active job and you can select debug from the menu.

Be warned though, this is not the same as STRSRVJOB. With WDSC, all you can do is take a look at the job and its variables, and if I'm not mistaken the job needs to be in MSGW for you to access it. You can't set breakpoints and debug the job after responding to the message.


Return to #TOP


Debug server not starting

original post [[6]]


Check QUSRWRK subsystem is active. STRDBGSVR submitted job goes to the queue QUSRNOMAX. Started the subsystem and all is well.

Return to #TOP

Displaying the Contents of a Table

original post [[7]]

In the Monitor View, click on the Plus icon to bring up Monitor Expression dialog.

Type "TABPRV(1..9)" in the entry field.


Return to #TOP