Robot Web Services
3HAC050973-001 Revision:M, Application Manual - Robot Web Services
Get a list of RobotWare return codes

Get all defined RobotWare return codes. Specific RobotWare return code can be filtered with the help of optional URL param.

URL

/rw/retcode

Method

GET

URL Params

code={code} optional

See Common URL parameters

Data Params

None

Success Response

HTTP_OK(200)

see HTTP Status codes

Example Response

<?xml version="1.0" encoding="utf-8"?>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Return Codes</title>
</head>
<body>
<div class="state">
<ul>
<li class="err-desc-it" title="294912">
<span class="name">SYS_CTRL_S_OK</span>
<span class="code">294912</span>
<span class="severity">Success</span>
<span class="description">Success.</span>
</li>
<li class="err-desc-it" title="294913">
<span class="name">SYS_CTRL_S_DONE</span>
<span class="code">294913</span>
<span class="severity">Success</span>
<span class="description">The operation is done and has completed successfully.</span>
</li>
...
<li class="err-desc-li" title="299011">
<span class="name">SYS_CTRL_S_RAPID_UNKNOWN_PROCEDURE</span>
<span class="code">299011</span>
<span class="severity">Success</span>
<span class="description">Operation completed but failed to set PP to main procedure.</span>
</li>
...
<li class="err-desc-li" title="-1073445883">
<span class="name">SYS_CTRL_E_ACTIVE_SYSTEM</span>
<span class="code">-1073445883</span>
<span class="severity">Error</span>
<span class="description">Operation not allowed on active system.</span>
</li>
...

Resources

  • err-descr-li
    • title The error code or success code as number
    • name The error code or success code as string
    • code The error code or success code as number
    • severity Success, Warning or Error
    • description Short description of the error code

Sample Call

curl --digest -u "Default User":robotics "http://192.168.8.105/rw/retcode"

Notes

Error description are only available in English and XML is the only supported format.

Not supported in bootserver mode