search for: xmlrpclib

Displaying 20 results from an estimated 22 matches for "xmlrpclib".

Did you mean: _xmlrpclib
2006 Mar 27
1
"xm list" causing "OverflowError: int exceeds XML-RPC limits"
...way I can get around this problem? Thanks, Aravindh Puthiyaparambil Xen Development Team Unisys, Tredyffrin PA E-Mail: aravindh.puthiyaparambil@unisys.com linuxM0076:~ # xm list Error: Traceback (most recent call last): File "/root/xen-unstable.hg/dist/install/usr/lib64/python/xen/util/xmlrpclib2 .py", line 79, in _marshaled_dispatch allow_none=1) File "/usr/lib64/python2.4/xmlrpclib.py", line 1029, in dumps data = m.dumps(params) File "/usr/lib64/python2.4/xmlrpclib.py", line 603, in dumps dump(v, write) File "/usr/lib64/python2.4/xmlrpclib....
2012 May 06
1
Bug#671750: Configuration of domain save/restore broken
...rgs) File "/usr/lib/xen-4.1/bin/../lib/python/xen/xm/main.py", line 4007, in _run_cmd return True, cmd(args) File "/usr/lib/xen-4.1/bin/../lib/python/xen/xm/main.py", line 923, in xm_restore server.xend.domain.restore(savefile, paused) File "/usr/lib/python2.7/xmlrpclib.py", line 1224, in __call__ return self.__send(self.__name, args) File "/usr/lib/xen-4.1/bin/../lib/python/xen/util/xmlrpcclient.py", line 124, in __request response = xmlrpclib.ServerProxy.__request(self, methodname, params) File "/usr/lib/python2.7/xmlrpclib.py&quo...
2006 Mar 28
7
[PATCH] XML-RPC: Cope with large integers on x86-64 systems
Attached patch fixes a problem in marshaling large integers. It seems to only occur on systems with very large memory. However, on those systems, it''s a show-stopper. I see this as a temporary solution until we can sanitize the XML-RPC functions and get rid of all the S-Expression stuff. I''ll run xm-test tomorrow against it. Right now I''ve only done basic
2008 May 02
6
Python script to collect domU stats
I''ve attached a python script that collects stats from DomUs (HVM and PVM). I hope this would be useful for somebody else. See comments for more info. regards, Diego -- -------------- Diego Woitasen XTECH _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
2009 Dec 15
0
Error starting up xVM in b129?
...start too soon. This is in the log file. [ Dec 15 06:26:06 Executing start method ("/lib/svc/method/xvm-domains start"). ] Traceback (most recent call last): File "/lib/svc/method/xvm-domains", line 39, in ? server.xend.domain.autostart() File "/usr/lib/python2.4/xmlrpclib.py", line 1096, in __call__ return self.__send(self.__name, args) File "/usr/lib/python2.4/site-packages/xen/util/xmlrpcclient.py", line 118, in __request File "/usr/lib/python2.4/xmlrpclib.py", line 1383, in __request verbose=self.__verbose File "/usr/l...
2007 Nov 27
0
how do i use xen api with key and cert?
...domain socket XML-RPC server on /var/run/xend/xmlrpc.sock. also netstat -l reports: tcp 0 0 *:9367 *:* LISTEN But I cant figure out how to call from the client side, what do I have to provide for user and password? I tried: python >> import xmlrpclib >> xen = xmlrpclib.Server("https://server_name:9367") >> xen.session.login_with_password(''<name_in_cert>'',''<optional_password_in_cert>'') Traceback (most recent call last): File "<stdin>", line 1, in ? File &qu...
2006 Mar 24
0
xm dmesg throws error with current unstable
...sr/src/xen/xen-unstable.hg-3.0-20060324.6/debian/xen-unstable.hg-3.0/usr/lib/python/xen/xm/main.py", line 1087, in main File "/usr/src/xen/xen-unstable.hg-3.0-20060324.6/debian/xen-unstable.hg-3.0/usr/lib/python/xen/xm/main.py", line 753, in xm_dmesg File "/usr/lib/python2.4/xmlrpclib.py", line 1096, in __call__ return self.__send(self.__name, args) File "/usr/lib/python2.4/xmlrpclib.py", line 1383, in __request verbose=self.__verbose File "/usr/src/xen/xen-unstable.hg-3.0-20060324.6/debian/xen-unstable.hg-3.0/usr/lib/python/xen/util/xmlrpclib2.py...
2006 Jul 14
0
xmlrpc over SSH
Hi I tried the SSH patch from Anthony.. using the following test code. It seems that it works only once... I mean for executing only one command over the established channel/connection. Any ideas... code from xmlrpclib import Transport from xen.util.xmlrpclib2 import ServerProxy server = ServerProxy("ssh://root@192.168.0.102/RPC2", None, None, 1, 1) l = server.xend.domains(1) print l # try again l = server.xend.domains(1) print l Output : ----------- [''Domain-0'', ''U1'...
2010 Dec 15
6
about Fedora13 Xen 4 Tutorial
Hi This is my first question.. (sorry for my poor english.. ) Is this right way to ask something about installing xen, build kernel ...etc using mailing list?? I want know "How or Where can I ask something & How can I get your smart answers" I have followed this tutorial " http://wiki.xen.org/xenwiki/Fedora13Xen4Tutorial" exactly on my Core 2 Dou. after config the
2010 Dec 15
6
about Fedora13 Xen 4 Tutorial
Hi This is my first question.. (sorry for my poor english.. ) Is this right way to ask something about installing xen, build kernel ...etc using mailing list?? I want know "How or Where can I ask something & How can I get your smart answers" I have followed this tutorial " http://wiki.xen.org/xenwiki/Fedora13Xen4Tutorial" exactly on my Core 2 Dou. after config the
2006 Mar 23
0
Re: [Xen-changelog] Improve error handling, in particular fixing the ProtocolError that is thrown
...========================================= > # Copyright (C) 2006 Anthony Liguori <aliguori@us.ibm.com> > -# Copyright (C) 2006 XenSource Ltd > +# Copyright (C) 2006 XenSource Ltd. > #============================================================================ > + > +import xmlrpclib > > from xen.xend import XendDomain, XendDomainInfo, XendNode, \ > XendLogging, XendDmesg > from xen.util.xmlrpclib2 import UnixXMLRPCServer, TCPXMLRPCServer > > -from xen.xend.XendClient import XML_RPC_SOCKET > +from xen.xend.XendClient import XML_R...
2010 Dec 21
0
[SPAM] XCP 1.0beta and vastSky. What information I have gathered, what I did and how "far" I got with it.
...-h now 2010-12-19 15:47:59,501 ssvr_reporter ERROR Traceback (most recent call last): File "ssvr_reporter.py", line 231, in main File "ssvr_reporter.py", line 100, in register_resources File "vas_subr.py", line 68, in send_request File "/usr/lib/python2.4/xmlrpclib.py", line 1096, in __call__ return self.__send(self.__name, args) File "/usr/lib/python2.4/xmlrpclib.py", line 1383, in __request verbose=self.__verbose File "/usr/lib/python2.4/xmlrpclib.py", line 1147, in request return self._parse_response(h.getfile(), so...
2010 Aug 19
0
Xend dont start anymore
....py", line 35, in ? from xen.xend import XendOptions, XendCheckpoint, XendDomainInfo File "//usr/lib64/python/xen/xend/XendOptions.py", line 34, in ? from xen.xend.XendError import XendError File "//usr/lib64/python/xen/xend/XendError.py", line 19, in ? from xmlrpclib import Fault File "/usr/lib/python2.4/xmlrpclib.py", line 506, in ? from xml.parsers import expat File "/usr/lib/python2.4/xml/parsers/expat.py", line 34 PyBool_FromLong:PyObject*::+1: ^ SyntaxError: invalid syntax uname -a Linux debian 2.6.18-xe...
2008 Sep 17
2
[Xen-ia64-devel] [PATCH] xm: Don''t spawn vncviewer twice.
...als) preprocess_ip(vals) preprocess_nfs(vals) - preprocess_vnc(vals) preprocess_vtpm(vals) preprocess_access_control(vals) preprocess_cpuid(vals, ''cpuid'') @@ -1193,23 +1160,10 @@ try: dominfo = server.xend.domain.create(config) except xmlrpclib.Fault, ex: - import signal - if vncpid: - os.kill(vncpid, signal.SIGKILL) if ex.faultCode == xen.xend.XendClient.ERROR_INVALID_DOMAIN: err("the domain ''%s'' does not exist." % ex.faultString) else: err(&...
2007 May 25
0
Reply for the windows virtualization (Ko0nz) Xen-users Digest, Vol 27, Issue 110
...age. I poked around in create.py and found a place to print a traceback, and it looks like this: Traceback (most recent call last): File "/usr/lib64/python2.4/xen/xm/create.py", line 1051, in make_domain dominfo = server.xend.domain.create(config) File "/usr/lib64/python2.4/xmlrpclib.py", line 1096, in __call__ return self.__send(self.__name, args) File "//usr/lib64/python/xen/util/xmlrpcclient.py", line 118, in __request File "/usr/lib64/python2.4/xmlrpclib.py", line 1383, in __request verbose=self.__verbose File "//usr/lib64/python/...
2006 Apr 02
3
RPC interface for xenmon
Hi, I read about RPC interface for xenmon in this presentation: www.xensource.com/files/xs0106_xenmon_brief.pdf Has such interface been implemented yet by anyone? Thanks, -- Jayesh ------------------------------------------------------------------------ Everything you can imagine is real _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com
2007 Dec 06
3
XenApi
I originally posted this to the xenapi mailing list but i dont think many are on there... here''s my question. My first attempt at this, trying to get php to interface with /var/run/xend/xen-api.sock (or even 127.0.0.1:9363 for that matter). I can make a connection to both the unix socket and the inet socket and write/read data. The problem is i always get the same responce back, also
2010 May 17
0
strace log
...t;pe, sys.exc_value, sys.exc_traceb"..., 4096) = 3280 read(5, ""..., 4096) = 0 close(5) = 0 munmap(0x7f731ad05000, 4096) = 0 close(4) = 0 stat("/usr/lib/xen-3.2-1/bin/../lib/python/xen/xm/xmlrpclib", 0x7fffffff6690) = -1 ENOENT (No such file or directory) open("/usr/lib/xen-3.2-1/bin/../lib/python/xen/xm/xmlrpclib.so", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/xen-3.2-1/bin/../lib/python/xen/xm/xmlrpclibmodule.so", O_RDONLY) = -1 ENOENT (No such...
2008 Jun 01
65
Release 0.9.5 of GPL PV Drivers for Windows
I''ve just made my first ever attempt at an Nullsoft installer, so if you want to try it download "Xen PV Drivers 0.9.5.exe" from http://www.meadowcourt.org/downloads/ The installer should detect the version of windows you are running and install the drivers. At the moment you''ll need to install the shutdown monitor service manually, but you can do that from the start
2008 Jun 01
65
Release 0.9.5 of GPL PV Drivers for Windows
I''ve just made my first ever attempt at an Nullsoft installer, so if you want to try it download "Xen PV Drivers 0.9.5.exe" from http://www.meadowcourt.org/downloads/ The installer should detect the version of windows you are running and install the drivers. At the moment you''ll need to install the shutdown monitor service manually, but you can do that from the start