0

次のコード行を使用して、メソッドsend_csr1からメソッドを呼び出します。send_crs

send_csr1(pipe.read,@username,@password)  

問題は、通常、次のコード行が実行されることです。

pipe.close_write

しかし、どういうわけか、cmdが決して閉じられないという結果にはなりません。手動で閉じると、次のエラーが表示されます。

  in `read': Interrupt
    from stack.rb:49:in `block in send_csr'
    from stack.rb:45:in `popen'
    from stack.rb:45:in `send_csr'
    from stack.rb:88:in `block in <main>'
    from stack.rb:87:in `each'
    from stack.rb:87:in `<main>'

私の質問は、私のコードで何を変更する必要があるかです.ruby surleyはcmdを閉じますか?

私の完全なコード:

def send_csr
 IO.popen('cmd', 'r+') do |pipe|
 pipe.puts('cd C:/OpenSSL/bin')
 pipe.puts('openssl.exe')
 pipe.puts("req  -config c:/OpenSSL/openssl.cnf -in  #{@csr}")
 send_csr1(pipe.read,@username,@password)   
 pipe.close_write
end
end

def send_csr1(text,user,password)
 @conn.basic_auth(user,password)
 @res = @conn.get do |request|  
 request.url "csr"
 request.headers['Content-Type'] = 'text/plain'
 request.body = "#{text}"
end
end
4

0 に答える 0