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

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