Changeset 69383 in vbox for trunk/src/VBox
- Timestamp:
- Oct 26, 2017 4:39:15 PM (7 years ago)
- Location:
- trunk/src/VBox/Main/webservice/samples
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/webservice/samples/java/jax-ws/Makefile
-
Property svn:keywords
set to
Id Revision
r44529 r69383 61 61 62 62 clean: 63 $(RM) -rf $(DEST15) $(DEST16) 63 $(RM) -rf $(DEST15) $(DEST16) -
Property svn:keywords
set to
-
trunk/src/VBox/Main/webservice/samples/perl/clienttest.pl
-
Property svn:keywords
set to
Id Revision
r42063 r69383 1 1 #!/usr/bin/perl 2 3 # 2 # $Id$ 3 ## @file 4 4 # This little perl program attempts to connect to a running VirtualBox 5 5 # webservice and calls various methods on it. Please refer to the SDK 6 6 # programming reference (SDKRef.pdf) for how to use this sample. 7 7 # 8 # Note! The following license applies to this file only 9 # 10 11 # 8 12 # Copyright (C) 2008-2012 Oracle Corporation 9 #10 # The following license applies to this file only:11 13 # 12 14 # Permission is hereby granted, free of charge, to any person … … 14 16 # files (the "Software"), to deal in the Software without 15 17 # restriction, including without limitation the rights to use, 16 # copy, modify, merge, publish, distribute, sublicense, and/or 17 # sell copies of the Software, and to permit persons to whom the 18 # Software is furnished to do so, subject to the following conditions: 18 # copy, modify, merge, publish, distribute, sublicense, and/or sell 19 # copies of the Software, and to permit persons to whom the 20 # Software is furnished to do so, subject to the following 21 # conditions: 19 22 # 20 23 # The above copyright notice and this permission notice shall be … … 24 27 # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES 25 28 # OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 26 # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT29 # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT 27 30 # HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 28 31 # WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -
Property svn:keywords
set to
-
trunk/src/VBox/Main/webservice/samples/python/Makefile
-
Property svn:keywords
set to
Id Revision
r44529 r69383 13 13 all: run 14 14 15 run: 15 run: 16 16 @echo !!!! Don\'t forget to start webserver with \"vboxwebsrv -t 10000\" !!! 17 PYTHONPATH=../lib python ../../../glue/python/sample/vboxshell.py -w 17 PYTHONPATH=../lib python ../../../glue/python/sample/vboxshell.py -w 18 18 19 19 server: -
Property svn:keywords
set to
-
trunk/src/VBox/Main/webservice/samples/python/clienttest.py
r67049 r69383 1 1 #!/usr/bin/python 2 # 3 # Copyright (C) 2012-2016 Oracle Corporation 4 # 5 # This file is part of VirtualBox Open Source Edition (OSE), as 6 # available from http://www.virtualbox.org. This file is free software; 7 # you can redistribute it and/or modify it under the terms of the GNU 8 # General Public License (GPL) as published by the Free Software 9 # Foundation, in version 2 as it comes in the "COPYING" file of the 10 # VirtualBox OSE distribution. VirtualBox OSE is distributed in the 11 # hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. 12 # 2 3 __copyright__ = \ 4 """ 5 Copyright (C) 2012-2016 Oracle Corporation 6 7 This file is part of VirtualBox Open Source Edition (OSE), as 8 available from http://www.virtualbox.org. This file is free software; 9 you can redistribute it and/or modify it under the terms of the GNU 10 General Public License (GPL) as published by the Free Software 11 Foundation, in version 2 as it comes in the "COPYING" file of the 12 VirtualBox OSE distribution. VirtualBox OSE is distributed in the 13 hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. 14 """ 15 16 13 17 # Things needed to be set up before running this sample: 14 18 # - Install Python and verify it works (2.7.2 will do, 3.x is untested yet)
Note:
See TracChangeset
for help on using the changeset viewer.