Changeset 80824 in vbox for trunk/src/VBox/Main/webservice/samples
- Timestamp:
- Sep 16, 2019 1:18:44 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 133393
- Location:
- trunk/src/VBox/Main/webservice/samples
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/webservice/samples/java/jax-ws/clienttest.java
r76553 r80824 229 229 String uuid = oMachine.getId(); 230 230 String sessionType = "gui"; 231 String env = "DISPLAY=:0.0"; 231 ArrayList<String> env = new ArrayList<String>(); 232 env.add("DISPLAY=:0.0"); 232 233 IProgress oProgress = 233 234 oMachine.launchVMProcess(oSession, -
trunk/src/VBox/Main/webservice/samples/perl/clienttest.pl
r76553 r80824 179 179 print "[$cmd] UUID: $uuid\n"; 180 180 181 my @env = (); 181 182 my $progress = vboxService->IMachine_launchVMProcess($machine, 182 183 $session, 183 184 "headless", 184 "");185 @env); 185 186 die "[$cmd] Cannot launch VM; stopped" 186 187 if (!$progress);
Note:
See TracChangeset
for help on using the changeset viewer.