The requested article is not available. Either it doesn't apply to this version of the product or the relevant information is organized differently in this version of the docs. You can search, browse, or go back to the other version.
Guidelines for creating validation scripts for remote system types
Contributors
-
PDF of this doc site
-
Installation and setup for Linux
-
Installation and setup for Windows
-

Collection of separate PDF docs
Creating your file...
This may take a few minutes. Thanks for your patience.
Your file is ready
You must be aware of the guidelines for creating validation scripts that are used to test the remote system types that you define in OnCommand Workflow Automation (WFA).
-
The Perl script that you create must be similar to the sample script provided in the Validation Script window.
-
The output of your validation script must be similar to that of the sample script.
Sample validation script
# Check connectivity. # Return 1 on success. # Return 0 on failure and set $message sub checkCredentials { my ($host, $user, $passwd, $protocol, $port, $timeout) = @_; # # Please add the code to check connectivity to $host using $protocol here. # return 1; }