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).
# 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; }