search for: protocolerror

Displaying 10 results from an estimated 10 matches for "protocolerror".

2006 Mar 23
0
Re: [Xen-changelog] Improve error handling, in particular fixing the ProtocolError that is thrown
Xen patchbot -unstable wrote: > # HG changeset patch > # User emellor@leeni.uk.xensource.com > # Node ID da24df1ea484cf72dc9d367d52e828777e0e20cd > # Parent c1bb4eb565296bdb00aed84fcc877befbcebd8e9 > Improve error handling, in particular fixing the ProtocolError that is thrown > when a domain is specified by the user that does not exist. Added a few > error codes -- many more to come, I expect. > > Signed-off-by: Ewan Mellor <ewan@xensource.com> > > diff -r c1bb4eb56529 -r da24df1ea484 tools/python/xen/xend/server/XMLRPCServer.py &...
2006 Mar 23
1
[PATCH] Fixup a couple of problems with XML-RPC error handling
This fixes a number of problems introduces in the recent XML-RPC check-in. The higher level errors are a great idea and I''ve also extended it a bit to have a slightly nicer interface. Please apply. Regards, Anthony Liguori _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
2006 Jul 06
5
Strange RPC error
...Xen, I have errors and google does not help me. The situation is simple: I installed Xen-3.0.2 on gentoo. The Dom0 kernel is up and running, all works perfectly. But when I try to start a DomU, xm raises this error: # xm create -c <conf_file> Using config file <conf_file> Error: <ProtocolError: RPC2/: -1> It''s all. After, `xm list` shows that the DomU is in "pause status". If I try to unpause It (`xm unpause`) the DomU''s status becomes "-----". But DomU does not start. Log shows an error while loading the DomU: ... [2006-07-06 18:50:10 xend...
2008 Jan 13
6
Graceful way to handle execution expired and bad URI errors?
Hello, I have a program that takes blog urls that our customers enter into their profiles. In some cases they enter bad feeds (IE html pages instead of atom or rss), and it throws these two errors: execution expired and bad URI errors in the view. I need to find a graceful way to handle both. Preferably, if I could find a way to throw an error message for the execution expired
2006 May 16
7
Unable to bring up Mini-OS on x86_64
...pecific object code), but still got the same error Thanks, Aravindh Puthiyaparambil Xen Development Team Unisys, Tredyffrin, PA E-Mail:  aravindh.puthiyaparambil@unisys.com xenbox:~/xen/xen-unstable/extras/mini-os # xm create domain_config Using config file "domain_config". Error: <ProtocolError for /RPC2: -1 > Dmesg ----- xenbox kernel: python[12171] general protection rip:2b14fba3776e rsp:427ff7d0 error:0 Xend.log -------- [2006-05-16 13:30:55 xend.XendDomainInfo] DEBUG (XendDomainInfo:186) XendDomainInfo.create([''vm'', [''name'', ''Mini-OS...
2009 Jun 15
1
NoMethodError: undefined method `password_reset_instructions' for UserNotifier:Class
...rted # authentication failed, cancel connection. @socket.close if not @started and @socket and not @socket.closed? @socket = nil end end def do_helo(helodomain) begin if @esmtp ehlo helodomain else helo helodomain end rescue Net::ProtocolError if @esmtp @esmtp = false @error_occured = false retry end raise end end def starttls getok(''STARTTLS'') end def quit begin getok(''QUIT'') rescue EOFError rescue OpenSSL::SSL::SSLError...
2008 Mar 30
1
Can anyone help me withTimeout error in rails 2.0.2
...ry to send a mail in rails 2.0.2 I always get timeout error Execution expired. Though i am able to catch the error I cannot understand why the error is generated in rails 2.0.2 and not in rails 1.2.5. Please advice me how can i fix the problem . The following is the error execution expired(Net::ProtocolError): c:/ruby/lib/ruby/1.8/timeout.rb:54:in `rbuf_fill'' c:/ruby/lib/ruby/1.8/timeout.rb:56:in `timeout'' c:/ruby/lib/ruby/1.8/timeout.rb:76:in `timeout'' c:/ruby/lib/ruby/1.8/net/protocol.rb:132:in `rbuf_fill'' c:/ruby/lib/ruby/1....
2006 Jan 30
3
Arrays of objects as parameters to webservices
I think I am missing something terribly obvious. Is it possible to have an :expects parameter for a webservice that is an array of objects? I want to have a single webservice that expects all my line items (for an order). Is this something that is possible? -- Posted via http://www.ruby-forum.com/.
2008 Jul 24
0
Errno::EBADF Send an Email in Rails using GMail
...rted # authentication failed, cancel connection. @socket.close if not @started and @socket and not @socket.closed? @socket = nil end end def do_helo(helodomain) begin if @esmtp ehlo helodomain else helo helodomain end rescue Net::ProtocolError if @esmtp @esmtp = false @error_occured = false retry end raise end end def starttls getok(''STARTTLS'') rescue return false return true end def quit begin getok(''QUIT'') rescue EOFError,...
2009 Apr 09
1
Mailing error in Rails 2.3.2
...@started = true ensure unless @started # authentication failed, cancel connection. @socket.close if not @started and @socket and not @socket.closed? @socket = nil end end def do_helo(helodomain) begin if @esmtp ehlo helodomain else helo helodomain end rescue Net::ProtocolError if @esmtp @esmtp = false @error_occured = false retry end raise end end def starttls getok(''STARTTLS'') end def quit begin getok(''QUIT'') rescue EOFError, OpenSSL::SSL::SSLError end end end end ------------------------------------...