This is an old revision of the document!
This is an example for a json-rpc in Ruby
require 'net/http' require 'uri' require 'json' class OpsiRPC def initialize(service_url) @uri = URI.parse(service_url) end def method_missing(name, *args) post_body = { 'method' => name, 'params' => args, 'id' => 'jsonrpc' }.to_json resp = JSON.parse( http_post_request(post_body) ) raise JSONRPCError, resp['error'] if resp['error'] resp['result'] end def http_post_request(post_body) http = Net::HTTP.new(@uri.host, @uri.port) http.use_ssl = true http.verify_mode = OpenSSL::SSL::VERIFY_NONE request = Net::HTTP::Post.new(@uri.request_uri) request.basic_auth(@uri.user, @uri.password) request.content_type = 'application/json' request.body = post_body http.request(request).body end class JSONRPCError < RuntimeError; end end h = OpsiRPC.new('https://test:w00t@srv-rs-opsi-kl01:4447/rpc') prodcuts=h.product_getObjects prodcuts.each do |product| puts product['id'] end