ws_sciab.ecm 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /*##############################################################################
  2. Copyright (C) 2011 HPCC Systems.
  3. All rights reserved. This program is free software: you can redistribute it and/or modify
  4. it under the terms of the GNU Affero General Public License as
  5. published by the Free Software Foundation, either version 3 of the
  6. License, or (at your option) any later version.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU Affero General Public License for more details.
  11. You should have received a copy of the GNU Affero General Public License
  12. along with this program. If not, see <http://www.gnu.org/licenses/>.
  13. ############################################################################## */
  14. ESPrequest IndexRequest
  15. {
  16. string hostName;
  17. string hostAddress;
  18. string hostSubnetMask;
  19. string hostGatewayAddress;
  20. string hostDNSAddress;
  21. string ldapAddress;
  22. string ldapUsername;
  23. string ldapPassword;
  24. string snmpPort;
  25. string snmpAddress;
  26. string snmpPassword;
  27. string smtpAddress;
  28. string sslEnabled;
  29. string logHistory;
  30. string nfsMountPoint;
  31. string shutdown;
  32. string mountCD;
  33. string resetConfiguration;
  34. string purgeData;
  35. };
  36. ESPresponse [exceptions_inline] BoolResponse
  37. {
  38. bool Response;
  39. string Status;
  40. };
  41. ESPservice [exceptions_inline("./smc_xslt/exceptions.xslt")] WsSciab
  42. {
  43. ESPmethod [resp_xsl_default("./smc_xslt/BoolResponse.xslt")] Index(IndexRequest, BoolResponse);
  44. };
  45. SCMexportdef(WsSciab);
  46. SCMapi(WsSciab) IClientWsSciab *createWsSciabClient();