home *** CD-ROM | disk | FTP | other *** search
/ PC World 2003 February / PCWorld_2003-02_cd.bin / Komunik / sambar / sambar53b3.exe / syssoap / echoFloatArray.c < prev    next >
Encoding:
Text File  |  2002-09-17  |  264 b   |  9 lines

  1. /*
  2. ** echoFloatArray web service handler.
  3. */
  4. value = soapParameterGet($soap, "echoFloatArray");
  5. if (!isArray(value) || (sizeof(value) != 3))
  6.     soapResultError($soap, "none", "Unexpected floating point array size.");
  7. else
  8.     soapResultAdd($soap, NULL, value);
  9.