Changeset 3048 for openwsman/trunk
- Timestamp:
- 11/20/08 19:21:54 (2 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
openwsman/trunk/bindings/ruby/tests/cim_operating_system.rb
r3000 r3048 26 26 while (context) 27 27 count += 1 28 result = client.pull( uri, context, options)28 result = client.pull( options, nil, uri, context ) 29 29 puts "Response ##{count}" 30 30 # puts "### #{result}" 31 result.body .PullResponse.Items.child.each_child{ |child|31 result.body["PullResponse"]["Items"].child.each { |child| 32 32 puts "\t#{child.name} = #{child.text}" 33 33 } 34 34 context = result.context 35 35 end 36 client.release( uri, context, options) if context36 client.release( options, uri, context ) if context 37 37 puts "Got #{count} responses" 38 38 end