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

  1. /*
  2. ** echoInteger web service handler.
  3. */
  4. value = soapParameterGet($soap, "echoInteger");
  5. if (value != 5)
  6.     soapResultError($soap, "ignore", "echoInteger not passed '5'");
  7. else
  8.     soapResultAdd($soap, NULL, value);
  9.