Changeset 31117 in vbox for trunk/src/VBox/Main/webservice
- Timestamp:
- Jul 26, 2010 2:49:24 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 64079
- Location:
- trunk/src/VBox/Main/webservice
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/webservice/Makefile.kmk
r31022 r31117 156 156 VBOXWEB_IDL_SRC_ORIG := $(VBOX_XIDL_FILE) 157 157 VBOXWEB_IDL_SRC := $(VBOXWEB_OUT_DIR)/VirtualBox.xidl 158 VBOXWEB_WSDL = $(VBOX_PATH_SDK)/bindings/webservice/vboxweb.wsdl 159 VBOXWEBSERVICE_WSDL = $(VBOX_PATH_SDK)/bindings/webservice/vboxwebService.wsdl 158 160 159 161 VBOXWEB_TYPEMAP := $(VBOXWEB_OUT_DIR)/typemap.dat … … 286 288 vboxwebsrv_ORDERDEPS = $(VBOXWEB_OUT_DIR)/gsoap_copy_all_ts 287 289 endif # !VBOX_ONLY_SDK 288 289 VBOXWEB_WSDL = $(VBOX_PATH_SDK)/bindings/webservice/vboxweb.wsdl290 VBOXWEBSERVICE_WSDL = $(VBOX_PATH_SDK)/bindings/webservice/vboxwebService.wsdl291 290 292 291 ifdef VBOX_WITH_JWS -
trunk/src/VBox/Main/webservice/websrv-python.xsl
r29835 r31117 465 465 from VirtualBox_services import * 466 466 467 try: 468 from VirtualBox_client import * 469 except: 470 pass 471 467 472 class ManagedManager: 468 473 def __init__(self): … … 855 860 def getPort(self): 856 861 if self.port is None: 857 self.port = vboxServiceLocator().getvboxPortType(self.url) 862 try: 863 self.port = vboxServiceLocator().getvboxPortType(self.url) 864 except: 865 self.port = vboxServiceLocator().getvboxServicePort(self.url) 858 866 return self.port 859 867
Note:
See TracChangeset
for help on using the changeset viewer.