@sinhaa
Yes, http works (however, we of course diable http access in prod)
Here is an example of the code....
require 'openssl'
require 'rest-client'
@Job_status = (RestClient::Request.execute(
:method => :get,
:url => "https://netappwfa-server.com/rest/workflows/jobs?jobStatus=COMPLETED",
#:payload => '{}'
:headers => {:content_type => 'application/json'},
:verify_ssl => false,
))
puts @Job_status