I am trying to use the xend http interface (yes, I know about http://wiki.xensource.com/xenwiki/XenApi, but this is for a quick demo this month). When I open http://127.0.0.1:8000/xend/domain I get a page the just says: "/ xend / domain /" thats its, no list of the domains. If I telnet to 127.0.0.1 8000 and do "GET /xend HTTP/1.1" I get a 500 Internel server error. Looking at xend-debug.log I see: Traceback (most recent call last): File "//usr/lib/python/xen/web/httpserver.py", line 141, in process return self.render(resource) File "//usr/lib/python/xen/web/httpserver.py", line 188, in render self.resultErr(ex) File "//usr/lib/python/xen/web/httpserver.py", line 181, in render val = resource.render(self) File "//usr/lib/python/xen/web/resource.py", line 59, in render return meth(req) File "//usr/lib/python/xen/xend/server/SrvDomainDir.py", line 138, in render_GET self._list(req, ''detail'' in req.args and req.args[''detail''] == [''1'']) File "//usr/lib/python/xen/xend/server/SrvDomainDir.py", line 149, in _list self.ls_domain(req, detail, False) File "//usr/lib/python/xen/xend/server/SrvDomainDir.py", line 167, in ls_domain req.write( AttributeError: XendDomainInfo instance has no attribute ''getSsidref'' This is xend 3.03, I downloaded the source and built it from scratch. Have I gone wrong somewhere? Evan _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
Tried this on xen-users and got no responses, so I am trying here... I am trying to use the xend http interface (yes, I know about http://wiki.xensource.com/xenwiki/XenApi, but this is for a quick demo this month). When I open http://127.0.0.1:8000/xend/domain I get a page the just says: "/ xend / domain /" thats its, no list of the domains. If I telnet to 127.0.0.1 8000 and do "GET /xend HTTP/1.1" I get a 500 Internel server error. Looking at xend-debug.log I see: Traceback (most recent call last): File "//usr/lib/python/xen/web/httpserver.py", line 141, in process return self.render(resource) File "//usr/lib/python/xen/web/httpserver.py", line 188, in render self.resultErr(ex) File "//usr/lib/python/xen/web/httpserver.py", line 181, in render val = resource.render(self) File "//usr/lib/python/xen/web/resource.py", line 59, in render return meth(req) File "//usr/lib/python/xen/xend/server/SrvDomainDir.py", line 138, in render_GET self._list(req, ''detail'' in req.args and req.args[''detail''] == [''1'']) File "//usr/lib/python/xen/xend/server/SrvDomainDir.py", line 149, in _list self.ls_domain(req, detail, False) File "//usr/lib/python/xen/xend/server/SrvDomainDir.py", line 167, in ls_domain req.write( AttributeError: XendDomainInfo instance has no attribute ''getSsidref'' This is xen 3.03 with a RHEL4U3 host. I downloaded the source and built it from scratch. Have I gone wrong somewhere? Evan _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
On Tue, Dec 12, 2006 at 09:40:48AM +0700, Evan Bigall wrote:> Tried this on xen-users and got no responses, so I am trying here... > > I am trying to use the xend http interface (yes, I know about > http://wiki.xensource.com/xenwiki/XenApi, but this is for a quick demo > this month). > > When I open http://127.0.0.1:8000/xend/domain I get a page the just > says: "/ xend / domain /" thats its, no list of the domains. > > If I telnet to 127.0.0.1 8000 and do "GET /xend HTTP/1.1" I get a 500 > Internel server error. > > Looking at xend-debug.log I see: > > Traceback (most recent call last): > File "//usr/lib/python/xen/web/httpserver.py", line 141, in process > return self.render(resource) > File "//usr/lib/python/xen/web/httpserver.py", line 188, in render > self.resultErr(ex) > File "//usr/lib/python/xen/web/httpserver.py", line 181, in render > val = resource.render(self) > File "//usr/lib/python/xen/web/resource.py", line 59, in render > return meth(req) > File "//usr/lib/python/xen/xend/server/SrvDomainDir.py", line 138, in > render_GET > self._list(req, ''detail'' in req.args and req.args[''detail''] == [''1'']) > File "//usr/lib/python/xen/xend/server/SrvDomainDir.py", line 149, in > _list > self.ls_domain(req, detail, False) > File "//usr/lib/python/xen/xend/server/SrvDomainDir.py", line 167, in > ls_domain > req.write( > AttributeError: XendDomainInfo instance has no attribute ''getSsidref'' > > This is xen 3.03 with a RHEL4U3 host. I downloaded the source and built > it from scratch. Have I gone wrong somewhere?This is a regression that I fixed this last week -- you need the attached patch, which you ought to be able to apply singly, or you could pull forward to the latest xen-unstable. That said, this server is by far the worst of all your options for demo''ing Xen! What are you trying to demo? There are a plethora of Xen administration interfaces, both web-based and not, open source and not, and I''m pretty sure that any one of them is better than that HTTP interface. Ewan. _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
On Tue, Dec 12, 2006 at 09:43:25AM +0000, Ewan Mellor wrote:> On Tue, Dec 12, 2006 at 09:40:48AM +0700, Evan Bigall wrote: > > > Tried this on xen-users and got no responses, so I am trying here... > > > > I am trying to use the xend http interface (yes, I know about > > http://wiki.xensource.com/xenwiki/XenApi, but this is for a quick demo > > this month). > > > > When I open http://127.0.0.1:8000/xend/domain I get a page the just > > says: "/ xend / domain /" thats its, no list of the domains. > > > > If I telnet to 127.0.0.1 8000 and do "GET /xend HTTP/1.1" I get a 500 > > Internel server error. > > > > Looking at xend-debug.log I see: > > > > Traceback (most recent call last): > > File "//usr/lib/python/xen/web/httpserver.py", line 141, in process > > return self.render(resource) > > File "//usr/lib/python/xen/web/httpserver.py", line 188, in render > > self.resultErr(ex) > > File "//usr/lib/python/xen/web/httpserver.py", line 181, in render > > val = resource.render(self) > > File "//usr/lib/python/xen/web/resource.py", line 59, in render > > return meth(req) > > File "//usr/lib/python/xen/xend/server/SrvDomainDir.py", line 138, in > > render_GET > > self._list(req, ''detail'' in req.args and req.args[''detail''] == [''1'']) > > File "//usr/lib/python/xen/xend/server/SrvDomainDir.py", line 149, in > > _list > > self.ls_domain(req, detail, False) > > File "//usr/lib/python/xen/xend/server/SrvDomainDir.py", line 167, in > > ls_domain > > req.write( > > AttributeError: XendDomainInfo instance has no attribute ''getSsidref'' > > > > This is xen 3.03 with a RHEL4U3 host. I downloaded the source and built > > it from scratch. Have I gone wrong somewhere? > > This is a regression that I fixed this last week -- you need the > attached patch, which you ought to be able to apply singly, or you could > pull forward to the latest xen-unstable. > > That said, this server is by far the worst of all your options for demo''ing Xen! > What are you trying to demo? There are a plethora of Xen administration > interfaces, both web-based and not, open source and not, and I''m pretty > sure that any one of them is better than that HTTP interface.Attached patch actually attached this time ;-) Ewan. _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
I won''t be demo''ing the interface. To integrate xen with our product I just need a very basic control interface where I can drive xen from an external (not dom0) interface. Given that I''m going to have to rewrite all this when the XenApi is stable I just want the simplest easiest to program thing for now. Thanks for the quick response with the patch, I''ll test it out today. Evan> That said, this server is by far the worst of all your options for demo''ing Xen! > What are you trying to demo? There are a plethora of Xen administration > interfaces, both web-based and not, open source and not, and I''m pretty > sure that any one of them is better than that HTTP interface._______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel