- Timestamp:
- Jul 30, 2010 8:04:52 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 64243
- Location:
- trunk/src/VBox/Main
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/glue/tests/Makefile.kmk
r30932 r31232 13 13 VBOX_BIN=/Applications/VirtualBox.app/Contents/MacOS 14 14 VBOX_SDK=$(VBOX_BIN)/sdk 15 JAVA15=/System/Library/Frameworks/JavaVM.framework/Versions/1.5/Commands/java 15 16 # JAVA_ARGS += -d32 16 17 endif … … 49 50 java $(JAVA_ARGS) -cp $(CLASSPATH) TestVBox 50 51 52 JAXLIBS=../../webservice/jaxlibs/ 53 # -noverify could be needed due http://bugs.sun.com/bugdatabase/view_bug.do;jsessionid=eb3fcd8f72ab4713f96e378a7575?bug_id=6614974 54 testws15: 55 javac -target 1.5 -source 1.5 -cp $(VBOX_JAR) TestVBox.java 56 $(JAVA15) $(JAVA_ARGS) -cp $(VBOX_JAR_WS)$(SEP)$(CLASSPATH)$(SEP)$(JAXLIBS)/jaxws-api.jar$(SEP)$(JAXLIBS)/jaxws-rt.jar \ 57 TestVBox -w -url http://localhost:18083 51 58 52 59 testws: -
trunk/src/VBox/Main/glue/tests/TestVBox.java
r31166 r31232 21 21 { 22 22 System.out.println("got event: " + ev); 23 24 23 VBoxEventType type = ev.getType(); 25 24 System.out.println("type = "+type); 26 27 25 switch (type) 28 26 { 29 27 case OnMachineStateChanged: 28 { 30 29 IMachineStateChangedEvent mcse = IMachineStateChangedEvent.queryInterface(ev); 31 30 if (mcse == null) … … 34 33 System.out.println("mid="+mcse.getMachineId()); 35 34 break; 35 } 36 36 } 37 37 } -
trunk/src/VBox/Main/webservice/Makefile.kmk
r31117 r31232 458 458 $(VBOXWEB_PYTHONWSSAMPLE)\ 459 459 $(VBOXWEB_JAXWSSAMPLE) \ 460 $(VBOXWEB_METRICSAMPLE) \ 460 $(VBOXWEB_METRICSAMPLE) 461 462 ifdef VBOX_WITH_OLD_JWS 463 VBOXWEB_OTHERS += \ 461 464 $(VBOXWEB_JAVA15_JAR) \ 462 465 $(VBOXWEB_JAVA16_JAR) 466 endif 463 467 464 468 #
Note:
See TracChangeset
for help on using the changeset viewer.