# File openwsman/openwsman.rb, line 107
    def to_s
      s = "#{classname}"
      first = true
      self.each do |k,v|
        s << ((first)?"?":"&")
        first = false
        s << "#{k}=#{v.inspect}"
      end
      s
    end