soap12-test.inc 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. <?php
  2. class Soap12test {
  3. public $header;
  4. function echoOk($x) {
  5. return $x;
  6. }
  7. function echoString($inputString) {
  8. return $inputString;
  9. }
  10. function echoStringArray($inputStringArray) {
  11. return $inputStringArray;
  12. }
  13. function echoInteger($inputInteger) {
  14. return $inputInteger;
  15. }
  16. function echoIntegerArray($inputIntegerArray) {
  17. return $inputIntegerArray;
  18. }
  19. function echoFloat($inputFloat) {
  20. return $inputFloat;
  21. }
  22. function echoFloatArray($inputFloatArray) {
  23. return $inputFloatArray;
  24. }
  25. function echoStruct($x) {
  26. return $x;
  27. }
  28. function echoStructArray($x) {
  29. return $x;
  30. }
  31. function echoVoid() {
  32. return NULL;
  33. }
  34. function echoBase64($b_encoded) {
  35. return $b_encoded;
  36. }
  37. function echoDate($timeInstant) {
  38. return $timeInstant;
  39. }
  40. function echoHexBinary($hb) {
  41. return $hb;
  42. }
  43. function echoDecimal($dec) {
  44. return $dec;
  45. }
  46. function echoBoolean($boolean) {
  47. return $boolean;
  48. }
  49. function echoStructAsSimpleTypes ($struct) {
  50. return array('outputString' => $struct->varString,
  51. 'outputInteger' => $struct->varInt,
  52. 'outputFloat' => $struct->varFloat);
  53. }
  54. function echoSimpleTypesAsStruct($string, $int, $float) {
  55. return (object)array("varString" => $string,
  56. "varInt" => $int,
  57. "varFloat" => $float);
  58. }
  59. function echoNestedStruct($struct) {
  60. return $struct;
  61. }
  62. function echo2DStringArray($ary) {
  63. return $ary;
  64. }
  65. function echoNestedArray($ary) {
  66. return $ary;
  67. }
  68. function countItems($input) {
  69. return count($input);
  70. }
  71. function isNil($input=NULL) {
  72. return is_null($input);
  73. }
  74. function returnVoid() {
  75. }
  76. function emptyBody() {
  77. }
  78. function requiredHeader($x) {
  79. $this->header = $x;
  80. }
  81. function echoHeader() {
  82. return $this->header;
  83. }
  84. function echoResolvedRef($ref) {
  85. return $ref->RelativeReference->base.$ref->RelativeReference->href;
  86. }
  87. function validateCountryCode($code) {
  88. if (strlen($code) != 2) {
  89. return new SoapFault("Client", "Not a valid country code", NULL, NULL, NULL, new SoapHeader("http://example.org/ts-tests", "validateCountryCodeFault", "Country code must be 2 letters."));
  90. } else {
  91. return "OK";
  92. }
  93. }
  94. }
  95. ini_set("soap.wsdl_cache_enabled",0);
  96. $server = new soapserver(dirname(__FILE__)."/soap12-test.wsdl", array('soap_version'=>SOAP_1_2,'actor'=>"http://example.org/ts-tests/C"));
  97. $server->setClass("Soap12test");
  98. $server->handle($HTTP_RAW_POST_DATA);
  99. echo "ok\n";
  100. ?>