Returns a list of all breakpoints that have been set, either for a specific session or for every session.
/action=luaDebug&command=get-breakpoints[&session=SessionID]
Type: Synchronous
Parameter Name | Description | Required |
---|---|---|
Session
|
To return breakpoints for a specific session, specify a session ID. You can retrieve a session ID by using the get-status command. | No |
http://localhost:7000/action=luadebug&command=get-breakpoints
<autnresponse xmlns:autn="http://schemas.autonomy.com/aci/"> <action>LUADEBUG</action> <response>SUCCESS</response> <responsedata> <data> <command>get-breakpoints</command> <breakpoints> <breakpoint source="C:\Autonomy\CFS\scripts\script.lua" line="10" /> <breakpoint source="C:\Autonomy\CFS\scripts\script_2.lua" line="4" /> </breakpoints> </data> </responsedata> </autnresponse>
|