I’m playing around with net connections a bit and ran into this behaviour:
(Note, that there’s no partner running on the given port.)
C:>irb
irb(main):001:0> require “socket”
=> true
irb(main):002:0> session = TCPSocket.new( ‘localhost’, 12345 )
Errno::E061: Die Druckerwarteschlange ist voll. - connect(2)
from (irb):2:in initialize' from (irb):2:innew’
from (irb):2
irb(main):003:0> exit
What’s happening?
“Die Druckerwarteschlange ist voll.” means something like “The printer queue is full”.
Hmm, for me the translation doesn’t help a lot.
Does anyone have an idea, why I get … a wrong error?
I’m running the Win installer version from Dave and Andy on a Win98SE.
BTW, trying this one the identical hardware, but using an OS I get the appropriate error:
stk@tao:~> irb
irb(main):001:0> require ‘socket’
=> true
irb(main):002:0> session = TCPSocket.new( ‘localhost’, 12345 )
Errno::ECONNREFUSED: Connection refused - connect(2)
from (irb):2:in initialize' from (irb):2:innew’
from (irb):2
irb(main):003:0>
What’s happening?
“Die Druckerwarteschlange ist voll.” means something like “The printer queue is full”.
Hmm, for me the translation doesn’t help a lot.
I think it had been fixed already.
Does anyone have an idea, why I get … a wrong error?
I’m running the Win installer version from Dave and Andy on a Win98SE.
What version is it?
···
At Sun, 30 Nov 2003 07:57:11 +0900, Stephan Kämper wrote:
At Sun, 30 Nov 2003 07:57:11 +0900, >Stephan Kämper wrote:
What’s happening?
“Die Druckerwarteschlange ist voll.” means something like “The printer queue is full”.
Hmm, for me the translation doesn’t help a lot.
I think it had been fixed already.
Does anyone have an idea, why I get … a wrong error?
I’m running the Win installer version from Dave and Andy on a Win98SE.
What version is it?
–
Never trust a girl with your mother’s cow
never let your trousers go falling down in the green grass…
irb(main):001:0> require “socket”
=> true
irb(main):002:0> session = TCPSocket.new(‘localhost’,12345)
Errno::ECONNREFUSED: No connection could be made because the target machine actively refused it. - connect(2)
from (irb):2:in initialize' from (irb):2:in new’
from (irb):2
irb(main):003:0>
irb(main):006:0> RUBY_VERSION
=> “1.8.1”
irb(main):007:0> RUBY_PLATFORM
=> “i386-mswin32”
irb(main):008:0> RUBY_RELEASE_DATE
=> “2003-10-31”