Changeset 33540 in vbox for trunk/src/VBox/Main/webservice
- Timestamp:
- Oct 28, 2010 9:27:05 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 67140
- Location:
- trunk/src/VBox/Main/webservice
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/webservice/Makefile.kmk
r31649 r33540 596 596 $(APPEND) $@ done 597 597 598 # copy the generated headers and stuff. This has to be a sep erate rule if we598 # copy the generated headers and stuff. This has to be a separate rule if we 599 599 # want to use wildcard (all commands are expaned when the rule is evaluated). 600 600 $(VBOXWEB_OUT_DIR)/gsoap_copy_all_ts: $(VBOXWEB_OUT_DIR)/gsoap_generate_all_ts | $$(dir $$@) -
trunk/src/VBox/Main/webservice/platform-xidl.xsl
r29200 r33540 35 35 <!-- 36 36 template for "idl" match; this emits the header of the target file 37 and recurses into the librar ys with interfaces (which are matched below)37 and recurses into the libraries with interfaces (which are matched below) 38 38 --> 39 39 <xsl:template match="/idl"> -
trunk/src/VBox/Main/webservice/samples/java/jax-ws/metrictest.java
r32394 r33540 217 217 // Start metric collection 218 218 c.setup(); 219 // Obtain and print out stats continuo sly until ctrl-C is pressed219 // Obtain and print out stats continuously until ctrl-C is pressed 220 220 while (true) 221 221 { -
trunk/src/VBox/Main/webservice/samples/php/clienttest.php
r32394 r33540 4 4 * Sample client for the VirtualBox webservice, written in PHP. 5 5 * 6 * Run the VirtualBox web service server first; see the VirtualB Ox6 * Run the VirtualBox web service server first; see the VirtualBox 7 7 * SDK reference for details. 8 8 * -
trunk/src/VBox/Main/webservice/types.txt
r28823 r33540 26 26 (2) Java "Short" is signed 16-bit integer; since Java has no support for unsigned types, we need to use the 27 27 next bigger class, which is Integer, for IPRT uint16_t. Similarly for the other integer types. 28 (3) PHP does not support unsigned integers; Size of integer is platform-depend ant, usual value of at least 32-bits signed. Use float for numbers greeted that signed 32-bit int28 (3) PHP does not support unsigned integers; Size of integer is platform-dependent, usual value of at least 32-bits signed. Use float for numbers greeted that signed 32-bit int 29 29 30 30 -
trunk/src/VBox/Main/webservice/vboxweb.cpp
r32780 r33540 363 363 364 364 // enqueue the socket of this connection and post eventsem so that 365 // one of the threads (possibly the one just creat d) can pick it up365 // one of the threads (possibly the one just created) can pick it up 366 366 m_llSocketsQ.push_back(s); 367 367 cItems = m_llSocketsQ.size(); … … 626 626 int main(int argc, char* argv[]) 627 627 { 628 // in tialize runtime628 // initialize runtime 629 629 int rc = RTR3Init(); 630 630 if (RT_FAILURE(rc)) … … 718 718 #endif 719 719 720 // in tialize COM/XPCOM720 // initialize COM/XPCOM 721 721 HRESULT hrc = com::Initialize(); 722 722 if (FAILED(hrc)) … … 1117 1117 1118 1118 /** 1119 * Authenticate the username and password against an authenti fication authority.1119 * Authenticate the username and password against an authentication authority. 1120 1120 * 1121 1121 * @return 0 if the user was successfully authenticated, or an error code -
trunk/src/VBox/Main/webservice/websrv-wsdl.xsl
r28800 r33540 43 43 the return value, if one is present in the IDL (called "_return" to 44 44 avoid name clashes), together with all the "out" and "inout" arguments. 45 Each of these messages, however, need to be independently declar ared45 Each of these messages, however, need to be independently declared 46 46 using the "message" element outside of the "port type" declaration. 47 47 … … 882 882 <!-- 883 883 template for "idl" match; this emits the header of the target file 884 and recurses into the librar ys with interfaces (which are matched below)884 and recurses into the libraries with interfaces (which are matched below) 885 885 --> 886 886 <xsl:template match="/idl">
Note:
See TracChangeset
for help on using the changeset viewer.