26 SOAP_FMAC3
int SOAP_FMAC4
soap_putelement(
struct soap*,
const void*,
const char*,
int,
int);
29 SOAP_FMAC3
const char ** SOAP_FMAC4
soap_faultcode(
struct soap *soap);
31 #ifndef SOAP_TYPE_byte_DEFINED 32 #define SOAP_TYPE_byte_DEFINED 34 #ifdef SOAP_DEFAULT_byte 35 #define soap_default_byte(soap, a) (*(a) = SOAP_DEFAULT_byte) 37 #define soap_default_byte(soap, a) (*(a) = (char)0) 39 SOAP_FMAC3
int SOAP_FMAC4
soap_out_byte(
struct soap*,
const char*,
int,
const char *,
const char*);
40 SOAP_FMAC3
char * SOAP_FMAC4
soap_in_byte(
struct soap*,
const char*,
char *,
const char*);
42 SOAP_FMAC3
char * SOAP_FMAC4
soap_new_byte(
struct soap *soap,
int n);
43 SOAP_FMAC3
int SOAP_FMAC4
soap_put_byte(
struct soap*,
const char *,
const char*,
const char*);
45 #ifndef soap_write_byte 46 #define soap_write_byte(soap, data) ( soap_free_temp(soap), soap_begin_send(soap) || soap_put_byte(soap, data, "byte", "") || soap_end_send(soap), (soap)->error ) 51 #define soap_PUT_byte(soap, URL, data) ( soap_free_temp(soap), soap_PUT(soap, URL, NULL, NULL) || soap_put_byte(soap, data, "byte", "") || soap_end_send(soap) || soap_recv_empty_response(soap), (soap)->error ) 55 #ifndef soap_POST_send_byte 56 #define soap_POST_send_byte(soap, URL, data) ( soap_free_temp(soap), soap_connect(soap, URL, NULL) || soap_put_byte(soap, data, "byte", "") || soap_end_send(soap), (soap)->error ) 59 SOAP_FMAC3
char * SOAP_FMAC4
soap_get_byte(
struct soap*,
char *,
const char*,
const char*);
61 #ifndef soap_read_byte 62 #define soap_read_byte(soap, data) ( soap_begin_recv(soap) || !soap_get_byte(soap, (data), NULL, NULL) || soap_end_recv(soap), (soap)->error ) 67 #define soap_GET_byte(soap, URL, data) ( soap_GET(soap, URL, NULL) || soap_read_byte(soap, (data)), (soap)->error ) 71 #ifndef soap_POST_recv_byte 72 #define soap_POST_recv_byte(soap, data) ( soap_read_byte(soap, (data)) || soap_closesock(soap), (soap)->error ) 77 #ifndef SOAP_TYPE_int_DEFINED 78 #define SOAP_TYPE_int_DEFINED 80 #ifdef SOAP_DEFAULT_int 81 #define soap_default_int(soap, a) (*(a) = SOAP_DEFAULT_int) 83 #define soap_default_int(soap, a) (*(a) = (int)0) 85 SOAP_FMAC3
int SOAP_FMAC4
soap_out_int(
struct soap*,
const char*,
int,
const int *,
const char*);
86 SOAP_FMAC3
int * SOAP_FMAC4
soap_in_int(
struct soap*,
const char*,
int *,
const char*);
88 SOAP_FMAC3
int * SOAP_FMAC4
soap_new_int(
struct soap *soap,
int n);
89 SOAP_FMAC3
int SOAP_FMAC4
soap_put_int(
struct soap*,
const int *,
const char*,
const char*);
91 #ifndef soap_write_int 92 #define soap_write_int(soap, data) ( soap_free_temp(soap), soap_begin_send(soap) || soap_put_int(soap, data, "int", "") || soap_end_send(soap), (soap)->error ) 97 #define soap_PUT_int(soap, URL, data) ( soap_free_temp(soap), soap_PUT(soap, URL, NULL, NULL) || soap_put_int(soap, data, "int", "") || soap_end_send(soap) || soap_recv_empty_response(soap), (soap)->error ) 101 #ifndef soap_POST_send_int 102 #define soap_POST_send_int(soap, URL, data) ( soap_free_temp(soap), soap_connect(soap, URL, NULL) || soap_put_int(soap, data, "int", "") || soap_end_send(soap), (soap)->error ) 105 SOAP_FMAC3
int * SOAP_FMAC4
soap_get_int(
struct soap*,
int *,
const char*,
const char*);
107 #ifndef soap_read_int 108 #define soap_read_int(soap, data) ( soap_begin_recv(soap) || !soap_get_int(soap, (data), NULL, NULL) || soap_end_recv(soap), (soap)->error ) 113 #define soap_GET_int(soap, URL, data) ( soap_GET(soap, URL, NULL) || soap_read_int(soap, (data)), (soap)->error ) 117 #ifndef soap_POST_recv_int 118 #define soap_POST_recv_int(soap, data) ( soap_read_int(soap, (data)) || soap_closesock(soap), (soap)->error ) 123 #ifndef SOAP_TYPE_dateTime_DEFINED 124 #define SOAP_TYPE_dateTime_DEFINED 126 #ifdef SOAP_DEFAULT_dateTime 127 #define soap_default_dateTime(soap, a) (*(a) = SOAP_DEFAULT_dateTime) 129 #define soap_default_dateTime(soap, a) (*(a) = (time_t)0) 131 SOAP_FMAC3
int SOAP_FMAC4
soap_out_dateTime(
struct soap*,
const char*,
int,
const time_t *,
const char*);
132 SOAP_FMAC3 time_t * SOAP_FMAC4
soap_in_dateTime(
struct soap*,
const char*, time_t *,
const char*);
135 SOAP_FMAC3
int SOAP_FMAC4
soap_put_dateTime(
struct soap*,
const time_t *,
const char*,
const char*);
137 #ifndef soap_write_dateTime 138 #define soap_write_dateTime(soap, data) ( soap_free_temp(soap), soap_begin_send(soap) || soap_put_dateTime(soap, data, "dateTime", "") || soap_end_send(soap), (soap)->error ) 142 #ifndef soap_PUT_dateTime 143 #define soap_PUT_dateTime(soap, URL, data) ( soap_free_temp(soap), soap_PUT(soap, URL, NULL, NULL) || soap_put_dateTime(soap, data, "dateTime", "") || soap_end_send(soap) || soap_recv_empty_response(soap), (soap)->error ) 147 #ifndef soap_POST_send_dateTime 148 #define soap_POST_send_dateTime(soap, URL, data) ( soap_free_temp(soap), soap_connect(soap, URL, NULL) || soap_put_dateTime(soap, data, "dateTime", "") || soap_end_send(soap), (soap)->error ) 151 SOAP_FMAC3 time_t * SOAP_FMAC4
soap_get_dateTime(
struct soap*, time_t *,
const char*,
const char*);
153 #ifndef soap_read_dateTime 154 #define soap_read_dateTime(soap, data) ( soap_begin_recv(soap) || !soap_get_dateTime(soap, (data), NULL, NULL) || soap_end_recv(soap), (soap)->error ) 158 #ifndef soap_GET_dateTime 159 #define soap_GET_dateTime(soap, URL, data) ( soap_GET(soap, URL, NULL) || soap_read_dateTime(soap, (data)), (soap)->error ) 163 #ifndef soap_POST_recv_dateTime 164 #define soap_POST_recv_dateTime(soap, data) ( soap_read_dateTime(soap, (data)) || soap_closesock(soap), (soap)->error ) 169 #ifndef WITH_NOGLOBAL 171 #ifndef SOAP_TYPE_SOAP_ENV__Fault_DEFINED 172 #define SOAP_TYPE_SOAP_ENV__Fault_DEFINED 181 #ifndef soap_write_SOAP_ENV__Fault 182 #define soap_write_SOAP_ENV__Fault(soap, data) ( soap_free_temp(soap), soap_begin_send(soap) || (soap_serialize_SOAP_ENV__Fault(soap, data), 0) || soap_put_SOAP_ENV__Fault(soap, data, "SOAP-ENV:Fault", "") || soap_end_send(soap), (soap)->error ) 186 #ifndef soap_PUT_SOAP_ENV__Fault 187 #define soap_PUT_SOAP_ENV__Fault(soap, URL, data) ( soap_free_temp(soap), soap_PUT(soap, URL, NULL, NULL) || (soap_serialize_SOAP_ENV__Fault(soap, data), 0) || soap_put_SOAP_ENV__Fault(soap, data, "SOAP-ENV:Fault", "") || soap_end_send(soap) || soap_recv_empty_response(soap), (soap)->error ) 191 #ifndef soap_POST_send_SOAP_ENV__Fault 192 #define soap_POST_send_SOAP_ENV__Fault(soap, URL, data) ( soap_free_temp(soap), soap_connect(soap, URL, NULL) || (soap_serialize_SOAP_ENV__Fault(soap, data), 0) || soap_put_SOAP_ENV__Fault(soap, data, "SOAP-ENV:Fault", "") || soap_end_send(soap), (soap)->error ) 197 #ifndef soap_read_SOAP_ENV__Fault 198 #define soap_read_SOAP_ENV__Fault(soap, data) ( ((data) ? (soap_default_SOAP_ENV__Fault(soap, (data)), 0) : 0) || soap_begin_recv(soap) || !soap_get_SOAP_ENV__Fault(soap, (data), NULL, NULL) || soap_end_recv(soap), (soap)->error ) 202 #ifndef soap_GET_SOAP_ENV__Fault 203 #define soap_GET_SOAP_ENV__Fault(soap, URL, data) ( soap_GET(soap, URL, NULL) || soap_read_SOAP_ENV__Fault(soap, (data)), (soap)->error ) 207 #ifndef soap_POST_recv_SOAP_ENV__Fault 208 #define soap_POST_recv_SOAP_ENV__Fault(soap, data) ( soap_read_SOAP_ENV__Fault(soap, (data)) || soap_closesock(soap), (soap)->error ) 215 #ifndef WITH_NOGLOBAL 217 #ifndef SOAP_TYPE_SOAP_ENV__Reason_DEFINED 218 #define SOAP_TYPE_SOAP_ENV__Reason_DEFINED 227 #ifndef soap_write_SOAP_ENV__Reason 228 #define soap_write_SOAP_ENV__Reason(soap, data) ( soap_free_temp(soap), soap_begin_send(soap) || (soap_serialize_SOAP_ENV__Reason(soap, data), 0) || soap_put_SOAP_ENV__Reason(soap, data, "SOAP-ENV:Reason", "") || soap_end_send(soap), (soap)->error ) 232 #ifndef soap_PUT_SOAP_ENV__Reason 233 #define soap_PUT_SOAP_ENV__Reason(soap, URL, data) ( soap_free_temp(soap), soap_PUT(soap, URL, NULL, NULL) || (soap_serialize_SOAP_ENV__Reason(soap, data), 0) || soap_put_SOAP_ENV__Reason(soap, data, "SOAP-ENV:Reason", "") || soap_end_send(soap) || soap_recv_empty_response(soap), (soap)->error ) 237 #ifndef soap_POST_send_SOAP_ENV__Reason 238 #define soap_POST_send_SOAP_ENV__Reason(soap, URL, data) ( soap_free_temp(soap), soap_connect(soap, URL, NULL) || (soap_serialize_SOAP_ENV__Reason(soap, data), 0) || soap_put_SOAP_ENV__Reason(soap, data, "SOAP-ENV:Reason", "") || soap_end_send(soap), (soap)->error ) 243 #ifndef soap_read_SOAP_ENV__Reason 244 #define soap_read_SOAP_ENV__Reason(soap, data) ( ((data) ? (soap_default_SOAP_ENV__Reason(soap, (data)), 0) : 0) || soap_begin_recv(soap) || !soap_get_SOAP_ENV__Reason(soap, (data), NULL, NULL) || soap_end_recv(soap), (soap)->error ) 248 #ifndef soap_GET_SOAP_ENV__Reason 249 #define soap_GET_SOAP_ENV__Reason(soap, URL, data) ( soap_GET(soap, URL, NULL) || soap_read_SOAP_ENV__Reason(soap, (data)), (soap)->error ) 253 #ifndef soap_POST_recv_SOAP_ENV__Reason 254 #define soap_POST_recv_SOAP_ENV__Reason(soap, data) ( soap_read_SOAP_ENV__Reason(soap, (data)) || soap_closesock(soap), (soap)->error ) 261 #ifndef WITH_NOGLOBAL 263 #ifndef SOAP_TYPE_SOAP_ENV__Detail_DEFINED 264 #define SOAP_TYPE_SOAP_ENV__Detail_DEFINED 273 #ifndef soap_write_SOAP_ENV__Detail 274 #define soap_write_SOAP_ENV__Detail(soap, data) ( soap_free_temp(soap), soap_begin_send(soap) || (soap_serialize_SOAP_ENV__Detail(soap, data), 0) || soap_put_SOAP_ENV__Detail(soap, data, "SOAP-ENV:Detail", "") || soap_end_send(soap), (soap)->error ) 278 #ifndef soap_PUT_SOAP_ENV__Detail 279 #define soap_PUT_SOAP_ENV__Detail(soap, URL, data) ( soap_free_temp(soap), soap_PUT(soap, URL, NULL, NULL) || (soap_serialize_SOAP_ENV__Detail(soap, data), 0) || soap_put_SOAP_ENV__Detail(soap, data, "SOAP-ENV:Detail", "") || soap_end_send(soap) || soap_recv_empty_response(soap), (soap)->error ) 283 #ifndef soap_POST_send_SOAP_ENV__Detail 284 #define soap_POST_send_SOAP_ENV__Detail(soap, URL, data) ( soap_free_temp(soap), soap_connect(soap, URL, NULL) || (soap_serialize_SOAP_ENV__Detail(soap, data), 0) || soap_put_SOAP_ENV__Detail(soap, data, "SOAP-ENV:Detail", "") || soap_end_send(soap), (soap)->error ) 289 #ifndef soap_read_SOAP_ENV__Detail 290 #define soap_read_SOAP_ENV__Detail(soap, data) ( ((data) ? (soap_default_SOAP_ENV__Detail(soap, (data)), 0) : 0) || soap_begin_recv(soap) || !soap_get_SOAP_ENV__Detail(soap, (data), NULL, NULL) || soap_end_recv(soap), (soap)->error ) 294 #ifndef soap_GET_SOAP_ENV__Detail 295 #define soap_GET_SOAP_ENV__Detail(soap, URL, data) ( soap_GET(soap, URL, NULL) || soap_read_SOAP_ENV__Detail(soap, (data)), (soap)->error ) 299 #ifndef soap_POST_recv_SOAP_ENV__Detail 300 #define soap_POST_recv_SOAP_ENV__Detail(soap, data) ( soap_read_SOAP_ENV__Detail(soap, (data)) || soap_closesock(soap), (soap)->error ) 307 #ifndef WITH_NOGLOBAL 309 #ifndef SOAP_TYPE_SOAP_ENV__Code_DEFINED 310 #define SOAP_TYPE_SOAP_ENV__Code_DEFINED 319 #ifndef soap_write_SOAP_ENV__Code 320 #define soap_write_SOAP_ENV__Code(soap, data) ( soap_free_temp(soap), soap_begin_send(soap) || (soap_serialize_SOAP_ENV__Code(soap, data), 0) || soap_put_SOAP_ENV__Code(soap, data, "SOAP-ENV:Code", "") || soap_end_send(soap), (soap)->error ) 324 #ifndef soap_PUT_SOAP_ENV__Code 325 #define soap_PUT_SOAP_ENV__Code(soap, URL, data) ( soap_free_temp(soap), soap_PUT(soap, URL, NULL, NULL) || (soap_serialize_SOAP_ENV__Code(soap, data), 0) || soap_put_SOAP_ENV__Code(soap, data, "SOAP-ENV:Code", "") || soap_end_send(soap) || soap_recv_empty_response(soap), (soap)->error ) 329 #ifndef soap_POST_send_SOAP_ENV__Code 330 #define soap_POST_send_SOAP_ENV__Code(soap, URL, data) ( soap_free_temp(soap), soap_connect(soap, URL, NULL) || (soap_serialize_SOAP_ENV__Code(soap, data), 0) || soap_put_SOAP_ENV__Code(soap, data, "SOAP-ENV:Code", "") || soap_end_send(soap), (soap)->error ) 335 #ifndef soap_read_SOAP_ENV__Code 336 #define soap_read_SOAP_ENV__Code(soap, data) ( ((data) ? (soap_default_SOAP_ENV__Code(soap, (data)), 0) : 0) || soap_begin_recv(soap) || !soap_get_SOAP_ENV__Code(soap, (data), NULL, NULL) || soap_end_recv(soap), (soap)->error ) 340 #ifndef soap_GET_SOAP_ENV__Code 341 #define soap_GET_SOAP_ENV__Code(soap, URL, data) ( soap_GET(soap, URL, NULL) || soap_read_SOAP_ENV__Code(soap, (data)), (soap)->error ) 345 #ifndef soap_POST_recv_SOAP_ENV__Code 346 #define soap_POST_recv_SOAP_ENV__Code(soap, data) ( soap_read_SOAP_ENV__Code(soap, (data)) || soap_closesock(soap), (soap)->error ) 353 #ifndef WITH_NOGLOBAL 355 #ifndef SOAP_TYPE_SOAP_ENV__Header_DEFINED 356 #define SOAP_TYPE_SOAP_ENV__Header_DEFINED 365 #ifndef soap_write_SOAP_ENV__Header 366 #define soap_write_SOAP_ENV__Header(soap, data) ( soap_free_temp(soap), soap_begin_send(soap) || (soap_serialize_SOAP_ENV__Header(soap, data), 0) || soap_put_SOAP_ENV__Header(soap, data, "SOAP-ENV:Header", "") || soap_end_send(soap), (soap)->error ) 370 #ifndef soap_PUT_SOAP_ENV__Header 371 #define soap_PUT_SOAP_ENV__Header(soap, URL, data) ( soap_free_temp(soap), soap_PUT(soap, URL, NULL, NULL) || (soap_serialize_SOAP_ENV__Header(soap, data), 0) || soap_put_SOAP_ENV__Header(soap, data, "SOAP-ENV:Header", "") || soap_end_send(soap) || soap_recv_empty_response(soap), (soap)->error ) 375 #ifndef soap_POST_send_SOAP_ENV__Header 376 #define soap_POST_send_SOAP_ENV__Header(soap, URL, data) ( soap_free_temp(soap), soap_connect(soap, URL, NULL) || (soap_serialize_SOAP_ENV__Header(soap, data), 0) || soap_put_SOAP_ENV__Header(soap, data, "SOAP-ENV:Header", "") || soap_end_send(soap), (soap)->error ) 381 #ifndef soap_read_SOAP_ENV__Header 382 #define soap_read_SOAP_ENV__Header(soap, data) ( ((data) ? (soap_default_SOAP_ENV__Header(soap, (data)), 0) : 0) || soap_begin_recv(soap) || !soap_get_SOAP_ENV__Header(soap, (data), NULL, NULL) || soap_end_recv(soap), (soap)->error ) 386 #ifndef soap_GET_SOAP_ENV__Header 387 #define soap_GET_SOAP_ENV__Header(soap, URL, data) ( soap_GET(soap, URL, NULL) || soap_read_SOAP_ENV__Header(soap, (data)), (soap)->error ) 391 #ifndef soap_POST_recv_SOAP_ENV__Header 392 #define soap_POST_recv_SOAP_ENV__Header(soap, data) ( soap_read_SOAP_ENV__Header(soap, (data)) || soap_closesock(soap), (soap)->error ) 399 #ifndef SOAP_TYPE_ns__destroy_DEFINED 400 #define SOAP_TYPE_ns__destroy_DEFINED 409 #ifndef soap_write_ns__destroy 410 #define soap_write_ns__destroy(soap, data) ( soap_free_temp(soap), soap_begin_send(soap) || (soap_serialize_ns__destroy(soap, data), 0) || soap_put_ns__destroy(soap, data, "ns:destroy", "") || soap_end_send(soap), (soap)->error ) 414 #ifndef soap_PUT_ns__destroy 415 #define soap_PUT_ns__destroy(soap, URL, data) ( soap_free_temp(soap), soap_PUT(soap, URL, NULL, NULL) || (soap_serialize_ns__destroy(soap, data), 0) || soap_put_ns__destroy(soap, data, "ns:destroy", "") || soap_end_send(soap) || soap_recv_empty_response(soap), (soap)->error ) 419 #ifndef soap_POST_send_ns__destroy 420 #define soap_POST_send_ns__destroy(soap, URL, data) ( soap_free_temp(soap), soap_connect(soap, URL, NULL) || (soap_serialize_ns__destroy(soap, data), 0) || soap_put_ns__destroy(soap, data, "ns:destroy", "") || soap_end_send(soap), (soap)->error ) 425 #ifndef soap_read_ns__destroy 426 #define soap_read_ns__destroy(soap, data) ( ((data) ? (soap_default_ns__destroy(soap, (data)), 0) : 0) || soap_begin_recv(soap) || !soap_get_ns__destroy(soap, (data), NULL, NULL) || soap_end_recv(soap), (soap)->error ) 430 #ifndef soap_GET_ns__destroy 431 #define soap_GET_ns__destroy(soap, URL, data) ( soap_GET(soap, URL, NULL) || soap_read_ns__destroy(soap, (data)), (soap)->error ) 435 #ifndef soap_POST_recv_ns__destroy 436 #define soap_POST_recv_ns__destroy(soap, data) ( soap_read_ns__destroy(soap, (data)) || soap_closesock(soap), (soap)->error ) 441 #ifndef SOAP_TYPE_ns__destroyResponse_DEFINED 442 #define SOAP_TYPE_ns__destroyResponse_DEFINED 451 #ifndef soap_write_ns__destroyResponse 452 #define soap_write_ns__destroyResponse(soap, data) ( soap_free_temp(soap), soap_begin_send(soap) || (soap_serialize_ns__destroyResponse(soap, data), 0) || soap_put_ns__destroyResponse(soap, data, "ns:destroyResponse", "") || soap_end_send(soap), (soap)->error ) 456 #ifndef soap_PUT_ns__destroyResponse 457 #define soap_PUT_ns__destroyResponse(soap, URL, data) ( soap_free_temp(soap), soap_PUT(soap, URL, NULL, NULL) || (soap_serialize_ns__destroyResponse(soap, data), 0) || soap_put_ns__destroyResponse(soap, data, "ns:destroyResponse", "") || soap_end_send(soap) || soap_recv_empty_response(soap), (soap)->error ) 461 #ifndef soap_POST_send_ns__destroyResponse 462 #define soap_POST_send_ns__destroyResponse(soap, URL, data) ( soap_free_temp(soap), soap_connect(soap, URL, NULL) || (soap_serialize_ns__destroyResponse(soap, data), 0) || soap_put_ns__destroyResponse(soap, data, "ns:destroyResponse", "") || soap_end_send(soap), (soap)->error ) 467 #ifndef soap_read_ns__destroyResponse 468 #define soap_read_ns__destroyResponse(soap, data) ( ((data) ? (soap_default_ns__destroyResponse(soap, (data)), 0) : 0) || soap_begin_recv(soap) || !soap_get_ns__destroyResponse(soap, (data), NULL, NULL) || soap_end_recv(soap), (soap)->error ) 472 #ifndef soap_GET_ns__destroyResponse 473 #define soap_GET_ns__destroyResponse(soap, URL, data) ( soap_GET(soap, URL, NULL) || soap_read_ns__destroyResponse(soap, (data)), (soap)->error ) 477 #ifndef soap_POST_recv_ns__destroyResponse 478 #define soap_POST_recv_ns__destroyResponse(soap, data) ( soap_read_ns__destroyResponse(soap, (data)) || soap_closesock(soap), (soap)->error ) 483 #ifndef SOAP_TYPE_ns__getTerminationTime_DEFINED 484 #define SOAP_TYPE_ns__getTerminationTime_DEFINED 493 #ifndef soap_write_ns__getTerminationTime 494 #define soap_write_ns__getTerminationTime(soap, data) ( soap_free_temp(soap), soap_begin_send(soap) || (soap_serialize_ns__getTerminationTime(soap, data), 0) || soap_put_ns__getTerminationTime(soap, data, "ns:getTerminationTime", "") || soap_end_send(soap), (soap)->error ) 498 #ifndef soap_PUT_ns__getTerminationTime 499 #define soap_PUT_ns__getTerminationTime(soap, URL, data) ( soap_free_temp(soap), soap_PUT(soap, URL, NULL, NULL) || (soap_serialize_ns__getTerminationTime(soap, data), 0) || soap_put_ns__getTerminationTime(soap, data, "ns:getTerminationTime", "") || soap_end_send(soap) || soap_recv_empty_response(soap), (soap)->error ) 503 #ifndef soap_POST_send_ns__getTerminationTime 504 #define soap_POST_send_ns__getTerminationTime(soap, URL, data) ( soap_free_temp(soap), soap_connect(soap, URL, NULL) || (soap_serialize_ns__getTerminationTime(soap, data), 0) || soap_put_ns__getTerminationTime(soap, data, "ns:getTerminationTime", "") || soap_end_send(soap), (soap)->error ) 509 #ifndef soap_read_ns__getTerminationTime 510 #define soap_read_ns__getTerminationTime(soap, data) ( ((data) ? (soap_default_ns__getTerminationTime(soap, (data)), 0) : 0) || soap_begin_recv(soap) || !soap_get_ns__getTerminationTime(soap, (data), NULL, NULL) || soap_end_recv(soap), (soap)->error ) 514 #ifndef soap_GET_ns__getTerminationTime 515 #define soap_GET_ns__getTerminationTime(soap, URL, data) ( soap_GET(soap, URL, NULL) || soap_read_ns__getTerminationTime(soap, (data)), (soap)->error ) 519 #ifndef soap_POST_recv_ns__getTerminationTime 520 #define soap_POST_recv_ns__getTerminationTime(soap, data) ( soap_read_ns__getTerminationTime(soap, (data)) || soap_closesock(soap), (soap)->error ) 525 #ifndef SOAP_TYPE_ns__getTerminationTimeResponse_DEFINED 526 #define SOAP_TYPE_ns__getTerminationTimeResponse_DEFINED 535 #ifndef soap_write_ns__getTerminationTimeResponse 536 #define soap_write_ns__getTerminationTimeResponse(soap, data) ( soap_free_temp(soap), soap_begin_send(soap) || (soap_serialize_ns__getTerminationTimeResponse(soap, data), 0) || soap_put_ns__getTerminationTimeResponse(soap, data, "ns:getTerminationTimeResponse", "") || soap_end_send(soap), (soap)->error ) 540 #ifndef soap_PUT_ns__getTerminationTimeResponse 541 #define soap_PUT_ns__getTerminationTimeResponse(soap, URL, data) ( soap_free_temp(soap), soap_PUT(soap, URL, NULL, NULL) || (soap_serialize_ns__getTerminationTimeResponse(soap, data), 0) || soap_put_ns__getTerminationTimeResponse(soap, data, "ns:getTerminationTimeResponse", "") || soap_end_send(soap) || soap_recv_empty_response(soap), (soap)->error ) 545 #ifndef soap_POST_send_ns__getTerminationTimeResponse 546 #define soap_POST_send_ns__getTerminationTimeResponse(soap, URL, data) ( soap_free_temp(soap), soap_connect(soap, URL, NULL) || (soap_serialize_ns__getTerminationTimeResponse(soap, data), 0) || soap_put_ns__getTerminationTimeResponse(soap, data, "ns:getTerminationTimeResponse", "") || soap_end_send(soap), (soap)->error ) 551 #ifndef soap_read_ns__getTerminationTimeResponse 552 #define soap_read_ns__getTerminationTimeResponse(soap, data) ( ((data) ? (soap_default_ns__getTerminationTimeResponse(soap, (data)), 0) : 0) || soap_begin_recv(soap) || !soap_get_ns__getTerminationTimeResponse(soap, (data), NULL, NULL) || soap_end_recv(soap), (soap)->error ) 556 #ifndef soap_GET_ns__getTerminationTimeResponse 557 #define soap_GET_ns__getTerminationTimeResponse(soap, URL, data) ( soap_GET(soap, URL, NULL) || soap_read_ns__getTerminationTimeResponse(soap, (data)), (soap)->error ) 561 #ifndef soap_POST_recv_ns__getTerminationTimeResponse 562 #define soap_POST_recv_ns__getTerminationTimeResponse(soap, data) ( soap_read_ns__getTerminationTimeResponse(soap, (data)) || soap_closesock(soap), (soap)->error ) 567 #ifndef SOAP_TYPE_ns__putProxy_DEFINED 568 #define SOAP_TYPE_ns__putProxy_DEFINED 577 #ifndef soap_write_ns__putProxy 578 #define soap_write_ns__putProxy(soap, data) ( soap_free_temp(soap), soap_begin_send(soap) || (soap_serialize_ns__putProxy(soap, data), 0) || soap_put_ns__putProxy(soap, data, "ns:putProxy", "") || soap_end_send(soap), (soap)->error ) 582 #ifndef soap_PUT_ns__putProxy 583 #define soap_PUT_ns__putProxy(soap, URL, data) ( soap_free_temp(soap), soap_PUT(soap, URL, NULL, NULL) || (soap_serialize_ns__putProxy(soap, data), 0) || soap_put_ns__putProxy(soap, data, "ns:putProxy", "") || soap_end_send(soap) || soap_recv_empty_response(soap), (soap)->error ) 587 #ifndef soap_POST_send_ns__putProxy 588 #define soap_POST_send_ns__putProxy(soap, URL, data) ( soap_free_temp(soap), soap_connect(soap, URL, NULL) || (soap_serialize_ns__putProxy(soap, data), 0) || soap_put_ns__putProxy(soap, data, "ns:putProxy", "") || soap_end_send(soap), (soap)->error ) 593 #ifndef soap_read_ns__putProxy 594 #define soap_read_ns__putProxy(soap, data) ( ((data) ? (soap_default_ns__putProxy(soap, (data)), 0) : 0) || soap_begin_recv(soap) || !soap_get_ns__putProxy(soap, (data), NULL, NULL) || soap_end_recv(soap), (soap)->error ) 598 #ifndef soap_GET_ns__putProxy 599 #define soap_GET_ns__putProxy(soap, URL, data) ( soap_GET(soap, URL, NULL) || soap_read_ns__putProxy(soap, (data)), (soap)->error ) 603 #ifndef soap_POST_recv_ns__putProxy 604 #define soap_POST_recv_ns__putProxy(soap, data) ( soap_read_ns__putProxy(soap, (data)) || soap_closesock(soap), (soap)->error ) 609 #ifndef SOAP_TYPE_ns__putProxyResponse_DEFINED 610 #define SOAP_TYPE_ns__putProxyResponse_DEFINED 619 #ifndef soap_write_ns__putProxyResponse 620 #define soap_write_ns__putProxyResponse(soap, data) ( soap_free_temp(soap), soap_begin_send(soap) || (soap_serialize_ns__putProxyResponse(soap, data), 0) || soap_put_ns__putProxyResponse(soap, data, "ns:putProxyResponse", "") || soap_end_send(soap), (soap)->error ) 624 #ifndef soap_PUT_ns__putProxyResponse 625 #define soap_PUT_ns__putProxyResponse(soap, URL, data) ( soap_free_temp(soap), soap_PUT(soap, URL, NULL, NULL) || (soap_serialize_ns__putProxyResponse(soap, data), 0) || soap_put_ns__putProxyResponse(soap, data, "ns:putProxyResponse", "") || soap_end_send(soap) || soap_recv_empty_response(soap), (soap)->error ) 629 #ifndef soap_POST_send_ns__putProxyResponse 630 #define soap_POST_send_ns__putProxyResponse(soap, URL, data) ( soap_free_temp(soap), soap_connect(soap, URL, NULL) || (soap_serialize_ns__putProxyResponse(soap, data), 0) || soap_put_ns__putProxyResponse(soap, data, "ns:putProxyResponse", "") || soap_end_send(soap), (soap)->error ) 635 #ifndef soap_read_ns__putProxyResponse 636 #define soap_read_ns__putProxyResponse(soap, data) ( ((data) ? (soap_default_ns__putProxyResponse(soap, (data)), 0) : 0) || soap_begin_recv(soap) || !soap_get_ns__putProxyResponse(soap, (data), NULL, NULL) || soap_end_recv(soap), (soap)->error ) 640 #ifndef soap_GET_ns__putProxyResponse 641 #define soap_GET_ns__putProxyResponse(soap, URL, data) ( soap_GET(soap, URL, NULL) || soap_read_ns__putProxyResponse(soap, (data)), (soap)->error ) 645 #ifndef soap_POST_recv_ns__putProxyResponse 646 #define soap_POST_recv_ns__putProxyResponse(soap, data) ( soap_read_ns__putProxyResponse(soap, (data)) || soap_closesock(soap), (soap)->error ) 651 #ifndef SOAP_TYPE_ns__renewProxyReq_DEFINED 652 #define SOAP_TYPE_ns__renewProxyReq_DEFINED 661 #ifndef soap_write_ns__renewProxyReq 662 #define soap_write_ns__renewProxyReq(soap, data) ( soap_free_temp(soap), soap_begin_send(soap) || (soap_serialize_ns__renewProxyReq(soap, data), 0) || soap_put_ns__renewProxyReq(soap, data, "ns:renewProxyReq", "") || soap_end_send(soap), (soap)->error ) 666 #ifndef soap_PUT_ns__renewProxyReq 667 #define soap_PUT_ns__renewProxyReq(soap, URL, data) ( soap_free_temp(soap), soap_PUT(soap, URL, NULL, NULL) || (soap_serialize_ns__renewProxyReq(soap, data), 0) || soap_put_ns__renewProxyReq(soap, data, "ns:renewProxyReq", "") || soap_end_send(soap) || soap_recv_empty_response(soap), (soap)->error ) 671 #ifndef soap_POST_send_ns__renewProxyReq 672 #define soap_POST_send_ns__renewProxyReq(soap, URL, data) ( soap_free_temp(soap), soap_connect(soap, URL, NULL) || (soap_serialize_ns__renewProxyReq(soap, data), 0) || soap_put_ns__renewProxyReq(soap, data, "ns:renewProxyReq", "") || soap_end_send(soap), (soap)->error ) 677 #ifndef soap_read_ns__renewProxyReq 678 #define soap_read_ns__renewProxyReq(soap, data) ( ((data) ? (soap_default_ns__renewProxyReq(soap, (data)), 0) : 0) || soap_begin_recv(soap) || !soap_get_ns__renewProxyReq(soap, (data), NULL, NULL) || soap_end_recv(soap), (soap)->error ) 682 #ifndef soap_GET_ns__renewProxyReq 683 #define soap_GET_ns__renewProxyReq(soap, URL, data) ( soap_GET(soap, URL, NULL) || soap_read_ns__renewProxyReq(soap, (data)), (soap)->error ) 687 #ifndef soap_POST_recv_ns__renewProxyReq 688 #define soap_POST_recv_ns__renewProxyReq(soap, data) ( soap_read_ns__renewProxyReq(soap, (data)) || soap_closesock(soap), (soap)->error ) 693 #ifndef SOAP_TYPE_ns__renewProxyReqResponse_DEFINED 694 #define SOAP_TYPE_ns__renewProxyReqResponse_DEFINED 703 #ifndef soap_write_ns__renewProxyReqResponse 704 #define soap_write_ns__renewProxyReqResponse(soap, data) ( soap_free_temp(soap), soap_begin_send(soap) || (soap_serialize_ns__renewProxyReqResponse(soap, data), 0) || soap_put_ns__renewProxyReqResponse(soap, data, "ns:renewProxyReqResponse", "") || soap_end_send(soap), (soap)->error ) 708 #ifndef soap_PUT_ns__renewProxyReqResponse 709 #define soap_PUT_ns__renewProxyReqResponse(soap, URL, data) ( soap_free_temp(soap), soap_PUT(soap, URL, NULL, NULL) || (soap_serialize_ns__renewProxyReqResponse(soap, data), 0) || soap_put_ns__renewProxyReqResponse(soap, data, "ns:renewProxyReqResponse", "") || soap_end_send(soap) || soap_recv_empty_response(soap), (soap)->error ) 713 #ifndef soap_POST_send_ns__renewProxyReqResponse 714 #define soap_POST_send_ns__renewProxyReqResponse(soap, URL, data) ( soap_free_temp(soap), soap_connect(soap, URL, NULL) || (soap_serialize_ns__renewProxyReqResponse(soap, data), 0) || soap_put_ns__renewProxyReqResponse(soap, data, "ns:renewProxyReqResponse", "") || soap_end_send(soap), (soap)->error ) 719 #ifndef soap_read_ns__renewProxyReqResponse 720 #define soap_read_ns__renewProxyReqResponse(soap, data) ( ((data) ? (soap_default_ns__renewProxyReqResponse(soap, (data)), 0) : 0) || soap_begin_recv(soap) || !soap_get_ns__renewProxyReqResponse(soap, (data), NULL, NULL) || soap_end_recv(soap), (soap)->error ) 724 #ifndef soap_GET_ns__renewProxyReqResponse 725 #define soap_GET_ns__renewProxyReqResponse(soap, URL, data) ( soap_GET(soap, URL, NULL) || soap_read_ns__renewProxyReqResponse(soap, (data)), (soap)->error ) 729 #ifndef soap_POST_recv_ns__renewProxyReqResponse 730 #define soap_POST_recv_ns__renewProxyReqResponse(soap, data) ( soap_read_ns__renewProxyReqResponse(soap, (data)) || soap_closesock(soap), (soap)->error ) 735 #ifndef SOAP_TYPE_ns__getNewProxyReq_DEFINED 736 #define SOAP_TYPE_ns__getNewProxyReq_DEFINED 745 #ifndef soap_write_ns__getNewProxyReq 746 #define soap_write_ns__getNewProxyReq(soap, data) ( soap_free_temp(soap), soap_begin_send(soap) || (soap_serialize_ns__getNewProxyReq(soap, data), 0) || soap_put_ns__getNewProxyReq(soap, data, "ns:getNewProxyReq", "") || soap_end_send(soap), (soap)->error ) 750 #ifndef soap_PUT_ns__getNewProxyReq 751 #define soap_PUT_ns__getNewProxyReq(soap, URL, data) ( soap_free_temp(soap), soap_PUT(soap, URL, NULL, NULL) || (soap_serialize_ns__getNewProxyReq(soap, data), 0) || soap_put_ns__getNewProxyReq(soap, data, "ns:getNewProxyReq", "") || soap_end_send(soap) || soap_recv_empty_response(soap), (soap)->error ) 755 #ifndef soap_POST_send_ns__getNewProxyReq 756 #define soap_POST_send_ns__getNewProxyReq(soap, URL, data) ( soap_free_temp(soap), soap_connect(soap, URL, NULL) || (soap_serialize_ns__getNewProxyReq(soap, data), 0) || soap_put_ns__getNewProxyReq(soap, data, "ns:getNewProxyReq", "") || soap_end_send(soap), (soap)->error ) 761 #ifndef soap_read_ns__getNewProxyReq 762 #define soap_read_ns__getNewProxyReq(soap, data) ( ((data) ? (soap_default_ns__getNewProxyReq(soap, (data)), 0) : 0) || soap_begin_recv(soap) || !soap_get_ns__getNewProxyReq(soap, (data), NULL, NULL) || soap_end_recv(soap), (soap)->error ) 766 #ifndef soap_GET_ns__getNewProxyReq 767 #define soap_GET_ns__getNewProxyReq(soap, URL, data) ( soap_GET(soap, URL, NULL) || soap_read_ns__getNewProxyReq(soap, (data)), (soap)->error ) 771 #ifndef soap_POST_recv_ns__getNewProxyReq 772 #define soap_POST_recv_ns__getNewProxyReq(soap, data) ( soap_read_ns__getNewProxyReq(soap, (data)) || soap_closesock(soap), (soap)->error ) 777 #ifndef SOAP_TYPE_ns__getNewProxyReqResponse_DEFINED 778 #define SOAP_TYPE_ns__getNewProxyReqResponse_DEFINED 787 #ifndef soap_write_ns__getNewProxyReqResponse 788 #define soap_write_ns__getNewProxyReqResponse(soap, data) ( soap_free_temp(soap), soap_begin_send(soap) || (soap_serialize_ns__getNewProxyReqResponse(soap, data), 0) || soap_put_ns__getNewProxyReqResponse(soap, data, "ns:getNewProxyReqResponse", "") || soap_end_send(soap), (soap)->error ) 792 #ifndef soap_PUT_ns__getNewProxyReqResponse 793 #define soap_PUT_ns__getNewProxyReqResponse(soap, URL, data) ( soap_free_temp(soap), soap_PUT(soap, URL, NULL, NULL) || (soap_serialize_ns__getNewProxyReqResponse(soap, data), 0) || soap_put_ns__getNewProxyReqResponse(soap, data, "ns:getNewProxyReqResponse", "") || soap_end_send(soap) || soap_recv_empty_response(soap), (soap)->error ) 797 #ifndef soap_POST_send_ns__getNewProxyReqResponse 798 #define soap_POST_send_ns__getNewProxyReqResponse(soap, URL, data) ( soap_free_temp(soap), soap_connect(soap, URL, NULL) || (soap_serialize_ns__getNewProxyReqResponse(soap, data), 0) || soap_put_ns__getNewProxyReqResponse(soap, data, "ns:getNewProxyReqResponse", "") || soap_end_send(soap), (soap)->error ) 803 #ifndef soap_read_ns__getNewProxyReqResponse 804 #define soap_read_ns__getNewProxyReqResponse(soap, data) ( ((data) ? (soap_default_ns__getNewProxyReqResponse(soap, (data)), 0) : 0) || soap_begin_recv(soap) || !soap_get_ns__getNewProxyReqResponse(soap, (data), NULL, NULL) || soap_end_recv(soap), (soap)->error ) 808 #ifndef soap_GET_ns__getNewProxyReqResponse 809 #define soap_GET_ns__getNewProxyReqResponse(soap, URL, data) ( soap_GET(soap, URL, NULL) || soap_read_ns__getNewProxyReqResponse(soap, (data)), (soap)->error ) 813 #ifndef soap_POST_recv_ns__getNewProxyReqResponse 814 #define soap_POST_recv_ns__getNewProxyReqResponse(soap, data) ( soap_read_ns__getNewProxyReqResponse(soap, (data)) || soap_closesock(soap), (soap)->error ) 819 #ifndef SOAP_TYPE_ns__getProxyReq_DEFINED 820 #define SOAP_TYPE_ns__getProxyReq_DEFINED 829 #ifndef soap_write_ns__getProxyReq 830 #define soap_write_ns__getProxyReq(soap, data) ( soap_free_temp(soap), soap_begin_send(soap) || (soap_serialize_ns__getProxyReq(soap, data), 0) || soap_put_ns__getProxyReq(soap, data, "ns:getProxyReq", "") || soap_end_send(soap), (soap)->error ) 834 #ifndef soap_PUT_ns__getProxyReq 835 #define soap_PUT_ns__getProxyReq(soap, URL, data) ( soap_free_temp(soap), soap_PUT(soap, URL, NULL, NULL) || (soap_serialize_ns__getProxyReq(soap, data), 0) || soap_put_ns__getProxyReq(soap, data, "ns:getProxyReq", "") || soap_end_send(soap) || soap_recv_empty_response(soap), (soap)->error ) 839 #ifndef soap_POST_send_ns__getProxyReq 840 #define soap_POST_send_ns__getProxyReq(soap, URL, data) ( soap_free_temp(soap), soap_connect(soap, URL, NULL) || (soap_serialize_ns__getProxyReq(soap, data), 0) || soap_put_ns__getProxyReq(soap, data, "ns:getProxyReq", "") || soap_end_send(soap), (soap)->error ) 845 #ifndef soap_read_ns__getProxyReq 846 #define soap_read_ns__getProxyReq(soap, data) ( ((data) ? (soap_default_ns__getProxyReq(soap, (data)), 0) : 0) || soap_begin_recv(soap) || !soap_get_ns__getProxyReq(soap, (data), NULL, NULL) || soap_end_recv(soap), (soap)->error ) 850 #ifndef soap_GET_ns__getProxyReq 851 #define soap_GET_ns__getProxyReq(soap, URL, data) ( soap_GET(soap, URL, NULL) || soap_read_ns__getProxyReq(soap, (data)), (soap)->error ) 855 #ifndef soap_POST_recv_ns__getProxyReq 856 #define soap_POST_recv_ns__getProxyReq(soap, data) ( soap_read_ns__getProxyReq(soap, (data)) || soap_closesock(soap), (soap)->error ) 861 #ifndef SOAP_TYPE_ns__getProxyReqResponse_DEFINED 862 #define SOAP_TYPE_ns__getProxyReqResponse_DEFINED 871 #ifndef soap_write_ns__getProxyReqResponse 872 #define soap_write_ns__getProxyReqResponse(soap, data) ( soap_free_temp(soap), soap_begin_send(soap) || (soap_serialize_ns__getProxyReqResponse(soap, data), 0) || soap_put_ns__getProxyReqResponse(soap, data, "ns:getProxyReqResponse", "") || soap_end_send(soap), (soap)->error ) 876 #ifndef soap_PUT_ns__getProxyReqResponse 877 #define soap_PUT_ns__getProxyReqResponse(soap, URL, data) ( soap_free_temp(soap), soap_PUT(soap, URL, NULL, NULL) || (soap_serialize_ns__getProxyReqResponse(soap, data), 0) || soap_put_ns__getProxyReqResponse(soap, data, "ns:getProxyReqResponse", "") || soap_end_send(soap) || soap_recv_empty_response(soap), (soap)->error ) 881 #ifndef soap_POST_send_ns__getProxyReqResponse 882 #define soap_POST_send_ns__getProxyReqResponse(soap, URL, data) ( soap_free_temp(soap), soap_connect(soap, URL, NULL) || (soap_serialize_ns__getProxyReqResponse(soap, data), 0) || soap_put_ns__getProxyReqResponse(soap, data, "ns:getProxyReqResponse", "") || soap_end_send(soap), (soap)->error ) 887 #ifndef soap_read_ns__getProxyReqResponse 888 #define soap_read_ns__getProxyReqResponse(soap, data) ( ((data) ? (soap_default_ns__getProxyReqResponse(soap, (data)), 0) : 0) || soap_begin_recv(soap) || !soap_get_ns__getProxyReqResponse(soap, (data), NULL, NULL) || soap_end_recv(soap), (soap)->error ) 892 #ifndef soap_GET_ns__getProxyReqResponse 893 #define soap_GET_ns__getProxyReqResponse(soap, URL, data) ( soap_GET(soap, URL, NULL) || soap_read_ns__getProxyReqResponse(soap, (data)), (soap)->error ) 897 #ifndef soap_POST_recv_ns__getProxyReqResponse 898 #define soap_POST_recv_ns__getProxyReqResponse(soap, data) ( soap_read_ns__getProxyReqResponse(soap, (data)) || soap_closesock(soap), (soap)->error ) 903 #ifndef SOAP_TYPE__DelegationException_DEFINED 904 #define SOAP_TYPE__DelegationException_DEFINED 913 #ifndef soap_write__DelegationException 914 #define soap_write__DelegationException(soap, data) ( soap_free_temp(soap), soap_begin_send(soap) || (soap_serialize__DelegationException(soap, data), 0) || soap_put__DelegationException(soap, data, "DelegationException", "") || soap_end_send(soap), (soap)->error ) 918 #ifndef soap_PUT__DelegationException 919 #define soap_PUT__DelegationException(soap, URL, data) ( soap_free_temp(soap), soap_PUT(soap, URL, NULL, NULL) || (soap_serialize__DelegationException(soap, data), 0) || soap_put__DelegationException(soap, data, "DelegationException", "") || soap_end_send(soap) || soap_recv_empty_response(soap), (soap)->error ) 923 #ifndef soap_POST_send__DelegationException 924 #define soap_POST_send__DelegationException(soap, URL, data) ( soap_free_temp(soap), soap_connect(soap, URL, NULL) || (soap_serialize__DelegationException(soap, data), 0) || soap_put__DelegationException(soap, data, "DelegationException", "") || soap_end_send(soap), (soap)->error ) 929 #ifndef soap_read__DelegationException 930 #define soap_read__DelegationException(soap, data) ( ((data) ? (soap_default__DelegationException(soap, (data)), 0) : 0) || soap_begin_recv(soap) || !soap_get__DelegationException(soap, (data), NULL, NULL) || soap_end_recv(soap), (soap)->error ) 934 #ifndef soap_GET__DelegationException 935 #define soap_GET__DelegationException(soap, URL, data) ( soap_GET(soap, URL, NULL) || soap_read__DelegationException(soap, (data)), (soap)->error ) 939 #ifndef soap_POST_recv__DelegationException 940 #define soap_POST_recv__DelegationException(soap, data) ( soap_read__DelegationException(soap, (data)) || soap_closesock(soap), (soap)->error ) 945 #ifndef SOAP_TYPE_ns__NewProxyReq_DEFINED 946 #define SOAP_TYPE_ns__NewProxyReq_DEFINED 955 #ifndef soap_write_ns__NewProxyReq 956 #define soap_write_ns__NewProxyReq(soap, data) ( soap_free_temp(soap), soap_begin_send(soap) || (soap_serialize_ns__NewProxyReq(soap, data), 0) || soap_put_ns__NewProxyReq(soap, data, "ns:NewProxyReq", "") || soap_end_send(soap), (soap)->error ) 960 #ifndef soap_PUT_ns__NewProxyReq 961 #define soap_PUT_ns__NewProxyReq(soap, URL, data) ( soap_free_temp(soap), soap_PUT(soap, URL, NULL, NULL) || (soap_serialize_ns__NewProxyReq(soap, data), 0) || soap_put_ns__NewProxyReq(soap, data, "ns:NewProxyReq", "") || soap_end_send(soap) || soap_recv_empty_response(soap), (soap)->error ) 965 #ifndef soap_POST_send_ns__NewProxyReq 966 #define soap_POST_send_ns__NewProxyReq(soap, URL, data) ( soap_free_temp(soap), soap_connect(soap, URL, NULL) || (soap_serialize_ns__NewProxyReq(soap, data), 0) || soap_put_ns__NewProxyReq(soap, data, "ns:NewProxyReq", "") || soap_end_send(soap), (soap)->error ) 971 #ifndef soap_read_ns__NewProxyReq 972 #define soap_read_ns__NewProxyReq(soap, data) ( ((data) ? (soap_default_ns__NewProxyReq(soap, (data)), 0) : 0) || soap_begin_recv(soap) || !soap_get_ns__NewProxyReq(soap, (data), NULL, NULL) || soap_end_recv(soap), (soap)->error ) 976 #ifndef soap_GET_ns__NewProxyReq 977 #define soap_GET_ns__NewProxyReq(soap, URL, data) ( soap_GET(soap, URL, NULL) || soap_read_ns__NewProxyReq(soap, (data)), (soap)->error ) 981 #ifndef soap_POST_recv_ns__NewProxyReq 982 #define soap_POST_recv_ns__NewProxyReq(soap, data) ( soap_read_ns__NewProxyReq(soap, (data)) || soap_closesock(soap), (soap)->error ) 987 #ifndef SOAP_TYPE_ns__DelegationExceptionType_DEFINED 988 #define SOAP_TYPE_ns__DelegationExceptionType_DEFINED 997 #ifndef soap_write_ns__DelegationExceptionType 998 #define soap_write_ns__DelegationExceptionType(soap, data) ( soap_free_temp(soap), soap_begin_send(soap) || (soap_serialize_ns__DelegationExceptionType(soap, data), 0) || soap_put_ns__DelegationExceptionType(soap, data, "ns:DelegationExceptionType", "") || soap_end_send(soap), (soap)->error ) 1002 #ifndef soap_PUT_ns__DelegationExceptionType 1003 #define soap_PUT_ns__DelegationExceptionType(soap, URL, data) ( soap_free_temp(soap), soap_PUT(soap, URL, NULL, NULL) || (soap_serialize_ns__DelegationExceptionType(soap, data), 0) || soap_put_ns__DelegationExceptionType(soap, data, "ns:DelegationExceptionType", "") || soap_end_send(soap) || soap_recv_empty_response(soap), (soap)->error ) 1007 #ifndef soap_POST_send_ns__DelegationExceptionType 1008 #define soap_POST_send_ns__DelegationExceptionType(soap, URL, data) ( soap_free_temp(soap), soap_connect(soap, URL, NULL) || (soap_serialize_ns__DelegationExceptionType(soap, data), 0) || soap_put_ns__DelegationExceptionType(soap, data, "ns:DelegationExceptionType", "") || soap_end_send(soap), (soap)->error ) 1013 #ifndef soap_read_ns__DelegationExceptionType 1014 #define soap_read_ns__DelegationExceptionType(soap, data) ( ((data) ? (soap_default_ns__DelegationExceptionType(soap, (data)), 0) : 0) || soap_begin_recv(soap) || !soap_get_ns__DelegationExceptionType(soap, (data), NULL, NULL) || soap_end_recv(soap), (soap)->error ) 1018 #ifndef soap_GET_ns__DelegationExceptionType 1019 #define soap_GET_ns__DelegationExceptionType(soap, URL, data) ( soap_GET(soap, URL, NULL) || soap_read_ns__DelegationExceptionType(soap, (data)), (soap)->error ) 1023 #ifndef soap_POST_recv_ns__DelegationExceptionType 1024 #define soap_POST_recv_ns__DelegationExceptionType(soap, data) ( soap_read_ns__DelegationExceptionType(soap, (data)) || soap_closesock(soap), (soap)->error ) 1029 #ifndef WITH_NOGLOBAL 1031 #ifndef SOAP_TYPE_PointerToSOAP_ENV__Reason_DEFINED 1032 #define SOAP_TYPE_PointerToSOAP_ENV__Reason_DEFINED 1042 #ifndef WITH_NOGLOBAL 1044 #ifndef SOAP_TYPE_PointerToSOAP_ENV__Detail_DEFINED 1045 #define SOAP_TYPE_PointerToSOAP_ENV__Detail_DEFINED 1055 #ifndef WITH_NOGLOBAL 1057 #ifndef SOAP_TYPE_PointerToSOAP_ENV__Code_DEFINED 1058 #define SOAP_TYPE_PointerToSOAP_ENV__Code_DEFINED 1068 #ifndef SOAP_TYPE_PointerTons__destroyResponse_DEFINED 1069 #define SOAP_TYPE_PointerTons__destroyResponse_DEFINED 1077 #ifndef SOAP_TYPE_PointerTons__getTerminationTimeResponse_DEFINED 1078 #define SOAP_TYPE_PointerTons__getTerminationTimeResponse_DEFINED 1086 #ifndef SOAP_TYPE_PointerTons__putProxyResponse_DEFINED 1087 #define SOAP_TYPE_PointerTons__putProxyResponse_DEFINED 1095 #ifndef SOAP_TYPE_PointerTons__renewProxyReqResponse_DEFINED 1096 #define SOAP_TYPE_PointerTons__renewProxyReqResponse_DEFINED 1104 #ifndef SOAP_TYPE_PointerTons__getNewProxyReqResponse_DEFINED 1105 #define SOAP_TYPE_PointerTons__getNewProxyReqResponse_DEFINED 1113 #ifndef SOAP_TYPE_PointerTons__NewProxyReq_DEFINED 1114 #define SOAP_TYPE_PointerTons__NewProxyReq_DEFINED 1122 #ifndef SOAP_TYPE_PointerTons__getProxyReqResponse_DEFINED 1123 #define SOAP_TYPE_PointerTons__getProxyReqResponse_DEFINED 1131 #ifndef SOAP_TYPE_PointerTons__DelegationExceptionType_DEFINED 1132 #define SOAP_TYPE_PointerTons__DelegationExceptionType_DEFINED 1140 #ifndef SOAP_TYPE__XML_DEFINED 1141 #define SOAP_TYPE__XML_DEFINED 1144 #ifndef SOAP_TYPE__QName_DEFINED 1145 #define SOAP_TYPE__QName_DEFINED 1147 #ifdef SOAP_DEFAULT__QName 1148 #define soap_default__QName(soap, a) (*(a) = SOAP_DEFAULT__QName) 1150 #define soap_default__QName(soap, a) (*(a) = (char *)0) 1154 #define soap__QName2s(soap, a) soap_QName2s(soap, (a)) 1155 SOAP_FMAC3
int SOAP_FMAC4
soap_out__QName(
struct soap*,
const char*,
int,
char*
const*,
const char*);
1157 #define soap_s2_QName(soap, s, a) soap_s2QName((soap), (s), (char**)(a), 0, -1, NULL) 1158 SOAP_FMAC3
char * * SOAP_FMAC4
soap_in__QName(
struct soap*,
const char*,
char **,
const char*);
1159 #define soap_new__QName soap_new_string 1161 SOAP_FMAC3
int SOAP_FMAC4
soap_put__QName(
struct soap*,
char *
const*,
const char*,
const char*);
1163 #ifndef soap_write__QName 1164 #define soap_write__QName(soap, data) ( soap_free_temp(soap), soap_begin_send(soap) || soap_put__QName(soap, data, "QName", "") || soap_end_send(soap), (soap)->error ) 1168 #ifndef soap_PUT__QName 1169 #define soap_PUT__QName(soap, URL, data) ( soap_free_temp(soap), soap_PUT(soap, URL, NULL, NULL) || soap_put__QName(soap, data, "QName", "") || soap_end_send(soap) || soap_recv_empty_response(soap), (soap)->error ) 1173 #ifndef soap_POST_send__QName 1174 #define soap_POST_send__QName(soap, URL, data) ( soap_free_temp(soap), soap_connect(soap, URL, NULL) || soap_put__QName(soap, data, "QName", "") || soap_end_send(soap), (soap)->error ) 1177 SOAP_FMAC3
char ** SOAP_FMAC4
soap_get__QName(
struct soap*,
char **,
const char*,
const char*);
1179 #ifndef soap_read__QName 1180 #define soap_read__QName(soap, data) ( soap_begin_recv(soap) || !soap_get__QName(soap, (data), NULL, NULL) || soap_end_recv(soap), (soap)->error ) 1184 #ifndef soap_GET__QName 1185 #define soap_GET__QName(soap, URL, data) ( soap_GET(soap, URL, NULL) || soap_read__QName(soap, (data)), (soap)->error ) 1189 #ifndef soap_POST_recv__QName 1190 #define soap_POST_recv__QName(soap, data) ( soap_read__QName(soap, (data)) || soap_closesock(soap), (soap)->error ) 1195 #ifndef SOAP_TYPE_string_DEFINED 1196 #define SOAP_TYPE_string_DEFINED 1198 #ifdef SOAP_DEFAULT_string 1199 #define soap_default_string(soap, a) (*(a) = SOAP_DEFAULT_string) 1201 #define soap_default_string(soap, a) (*(a) = (char *)0) 1205 #define soap_string2s(soap, a) (a) 1206 SOAP_FMAC3
int SOAP_FMAC4
soap_out_string(
struct soap*,
const char*,
int,
char*
const*,
const char*);
1208 #define soap_s2string(soap, s, a) soap_s2char((soap), (s), (char**)(a), 0, -1, NULL) 1209 SOAP_FMAC3
char * * SOAP_FMAC4
soap_in_string(
struct soap*,
const char*,
char **,
const char*);
1211 SOAP_FMAC3
char * * SOAP_FMAC4
soap_new_string(
struct soap *soap,
int n);
1212 SOAP_FMAC3
int SOAP_FMAC4
soap_put_string(
struct soap*,
char *
const*,
const char*,
const char*);
1214 #ifndef soap_write_string 1215 #define soap_write_string(soap, data) ( soap_free_temp(soap), soap_begin_send(soap) || soap_put_string(soap, data, "string", "") || soap_end_send(soap), (soap)->error ) 1219 #ifndef soap_PUT_string 1220 #define soap_PUT_string(soap, URL, data) ( soap_free_temp(soap), soap_PUT(soap, URL, NULL, NULL) || soap_put_string(soap, data, "string", "") || soap_end_send(soap) || soap_recv_empty_response(soap), (soap)->error ) 1224 #ifndef soap_POST_send_string 1225 #define soap_POST_send_string(soap, URL, data) ( soap_free_temp(soap), soap_connect(soap, URL, NULL) || soap_put_string(soap, data, "string", "") || soap_end_send(soap), (soap)->error ) 1228 SOAP_FMAC3
char ** SOAP_FMAC4
soap_get_string(
struct soap*,
char **,
const char*,
const char*);
1230 #ifndef soap_read_string 1231 #define soap_read_string(soap, data) ( soap_begin_recv(soap) || !soap_get_string(soap, (data), NULL, NULL) || soap_end_recv(soap), (soap)->error ) 1235 #ifndef soap_GET_string 1236 #define soap_GET_string(soap, URL, data) ( soap_GET(soap, URL, NULL) || soap_read_string(soap, (data)), (soap)->error ) 1240 #ifndef soap_POST_recv_string 1241 #define soap_POST_recv_string(soap, data) ( soap_read_string(soap, (data)) || soap_closesock(soap), (soap)->error ) SOAP_FMAC3 struct SOAP_ENV__Reason *SOAP_FMAC4 soap_get_SOAP_ENV__Reason(struct soap *, struct SOAP_ENV__Reason *, const char *, const char *)
Definition: soapC.c:898
SOAP_FMAC3 int SOAP_FMAC4 soap_put_ns__NewProxyReq(struct soap *, const struct ns__NewProxyReq *, const char *, const char *)
Definition: soapC.c:2340
SOAP_FMAC3 void SOAP_FMAC4 soap_default_SOAP_ENV__Detail(struct soap *, struct SOAP_ENV__Detail *)
Definition: soapC.c:910
SOAP_FMAC3 struct SOAP_ENV__Code *SOAP_FMAC4 soap_new_SOAP_ENV__Code(struct soap *soap, int n)
Definition: soapC.c:1078
SOAP_FMAC3 void SOAP_FMAC4 soap_default_ns__getTerminationTime(struct soap *, struct ns__getTerminationTime *)
Definition: soapC.c:1340
SOAP_FMAC3 struct ns__putProxyResponse *SOAP_FMAC4 soap_new_ns__putProxyResponse(struct soap *soap, int n)
Definition: soapC.c:1659
SOAP_FMAC3 void SOAP_FMAC4 soap_default_ns__destroy(struct soap *, struct ns__destroy *)
Definition: soapC.c:1182
SOAP_FMAC3 char **SOAP_FMAC4 soap_in__QName(struct soap *, const char *, char **, const char *)
Definition: soapC.c:3061
SOAP_FMAC3 void SOAP_FMAC4 soap_default_ns__getNewProxyReq(struct soap *, struct ns__getNewProxyReq *)
Definition: soapC.c:1851
SOAP_FMAC3 void SOAP_FMAC4 soap_default_SOAP_ENV__Code(struct soap *, struct SOAP_ENV__Code *)
Definition: soapC.c:1007
SOAP_FMAC3 struct SOAP_ENV__Reason **SOAP_FMAC4 soap_get_PointerToSOAP_ENV__Reason(struct soap *, struct SOAP_ENV__Reason **, const char *, const char *)
Definition: soapC.c:2487
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_ns__getNewProxyReq(struct soap *, const struct ns__getNewProxyReq *)
Definition: soapC.c:1856
SOAP_FMAC3 const char **SOAP_FMAC4 soap_faultcode(struct soap *soap)
Definition: soapC.c:99
SOAP_FMAC3 struct SOAP_ENV__Reason **SOAP_FMAC4 soap_in_PointerToSOAP_ENV__Reason(struct soap *, const char *, struct SOAP_ENV__Reason **, const char *)
Definition: soapC.c:2458
SOAP_FMAC3 time_t *SOAP_FMAC4 soap_get_dateTime(struct soap *, time_t *, const char *, const char *)
Definition: soapC.c:641
SOAP_FMAC3 int SOAP_FMAC4 soap_put__DelegationException(struct soap *, const struct _DelegationException *, const char *, const char *)
Definition: soapC.c:2246
SOAP_FMAC3 int SOAP_FMAC4 soap_out_SOAP_ENV__Code(struct soap *, const char *, int, const struct SOAP_ENV__Code *, const char *)
Definition: soapC.c:1023
SOAP_FMAC3 void SOAP_FMAC4 soap_default_ns__NewProxyReq(struct soap *, struct ns__NewProxyReq *)
Definition: soapC.c:2261
SOAP_FMAC3 struct ns__destroy *SOAP_FMAC4 soap_in_ns__destroy(struct soap *, const char *, struct ns__destroy *, const char *)
Definition: soapC.c:1206
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_string(struct soap *, char *const *)
Definition: soapC.c:3082
SOAP_FMAC3 void SOAP_FMAC4 soap_default_ns__putProxyResponse(struct soap *, struct ns__putProxyResponse *)
Definition: soapC.c:1609
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTons__putProxyResponse(struct soap *, struct ns__putProxyResponse *const *)
Definition: soapC.c:2724
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_ns__putProxy(struct soap *, const struct ns__putProxy *)
Definition: soapC.c:1522
SOAP_FMAC3 struct ns__destroyResponse **SOAP_FMAC4 soap_get_PointerTons__destroyResponse(struct soap *, struct ns__destroyResponse **, const char *, const char *)
Definition: soapC.c:2662
SOAP_FMAC3 int SOAP_FMAC4 soap_out__QName(struct soap *, const char *, int, char *const *, const char *)
Definition: soapC.c:3056
SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToSOAP_ENV__Detail(struct soap *, struct SOAP_ENV__Detail *const *, const char *, const char *)
Definition: soapC.c:2538
SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTons__renewProxyReqResponse(struct soap *, struct ns__renewProxyReqResponse *const *, const char *, const char *)
Definition: soapC.c:2817
SOAP_FMAC3 int SOAP_FMAC4 soap_put_byte(struct soap *, const char *, const char *, const char *)
Definition: soapC.c:564
SOAP_FMAC3 int *SOAP_FMAC4 soap_in_int(struct soap *, const char *, int *, const char *)
Definition: soapC.c:584
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_ns__getTerminationTime(struct soap *, const struct ns__getTerminationTime *)
Definition: soapC.c:1346
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_SOAP_ENV__Header(struct soap *, const struct SOAP_ENV__Header *)
Definition: soapC.c:1111
SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTons__putProxyResponse(struct soap *, struct ns__putProxyResponse *const *, const char *, const char *)
Definition: soapC.c:2763
SOAP_FMAC3 int SOAP_FMAC4 soap_put_ns__getProxyReq(struct soap *, const struct ns__getProxyReq *, const char *, const char *)
Definition: soapC.c:2078
Definition: soapStub.h:132
SOAP_FMAC3 struct ns__destroyResponse *SOAP_FMAC4 soap_new_ns__destroyResponse(struct soap *soap, int n)
Definition: soapC.c:1316
SOAP_FMAC3 int SOAP_FMAC4 soap_putelement(struct soap *, const void *, const char *, int, int)
Definition: soapC.c:395
SOAP_FMAC3 int SOAP_FMAC4 soap_put_ns__destroyResponse(struct soap *, const struct ns__destroyResponse *, const char *, const char *)
Definition: soapC.c:1325
SOAP_FMAC3 char *SOAP_FMAC4 soap_get_byte(struct soap *, char *, const char *, const char *)
Definition: soapC.c:571
SOAP_FMAC3 void SOAP_FMAC4 soap_default__DelegationException(struct soap *, struct _DelegationException *)
Definition: soapC.c:2177
SOAP_FMAC3 int SOAP_FMAC4 soap_put_ns__getTerminationTime(struct soap *, const struct ns__getTerminationTime *, const char *, const char *)
Definition: soapC.c:1409
Definition: soapStub.h:121
SOAP_FMAC3 int SOAP_FMAC4 soap_put_ns__getNewProxyReqResponse(struct soap *, const struct ns__getNewProxyReqResponse *, const char *, const char *)
Definition: soapC.c:1994
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_ns__getProxyReq(struct soap *, const struct ns__getProxyReq *)
Definition: soapC.c:2015
SOAP_FMAC3 struct SOAP_ENV__Code **SOAP_FMAC4 soap_in_PointerToSOAP_ENV__Code(struct soap *, const char *, struct SOAP_ENV__Code **, const char *)
Definition: soapC.c:2577
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_SOAP_ENV__Reason(struct soap *, const struct SOAP_ENV__Reason *)
Definition: soapC.c:826
SOAP_FMAC3 int SOAP_FMAC4 soap_put_ns__destroy(struct soap *, const struct ns__destroy *, const char *, const char *)
Definition: soapC.c:1251
SOAP_FMAC3 void SOAP_FMAC4 soap_default_ns__putProxy(struct soap *, struct ns__putProxy *)
Definition: soapC.c:1515
SOAP_FMAC3 struct ns__getTerminationTimeResponse **SOAP_FMAC4 soap_in_PointerTons__getTerminationTimeResponse(struct soap *, const char *, struct ns__getTerminationTimeResponse **, const char *)
Definition: soapC.c:2687
SOAP_FMAC3 int SOAP_FMAC4 soap_put_dateTime(struct soap *, const time_t *, const char *, const char *)
Definition: soapC.c:634
SOAP_FMAC3 void SOAP_FMAC4 soap_default_ns__getProxyReqResponse(struct soap *, struct ns__getProxyReqResponse *)
Definition: soapC.c:2093
SOAP_FMAC3 struct ns__getTerminationTimeResponse *SOAP_FMAC4 soap_new_ns__getTerminationTimeResponse(struct soap *soap, int n)
Definition: soapC.c:1491
SOAP_FMAC3 struct SOAP_ENV__Header *SOAP_FMAC4 soap_new_SOAP_ENV__Header(struct soap *soap, int n)
Definition: soapC.c:1156
SOAP_FMAC3 void SOAP_FMAC4 soap_default_SOAP_ENV__Reason(struct soap *, struct SOAP_ENV__Reason *)
Definition: soapC.c:820
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToSOAP_ENV__Reason(struct soap *, struct SOAP_ENV__Reason *const *)
Definition: soapC.c:2441
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToSOAP_ENV__Code(struct soap *, struct SOAP_ENV__Code *const *)
Definition: soapC.c:2557
SOAP_FMAC3 struct SOAP_ENV__Header *SOAP_FMAC4 soap_in_SOAP_ENV__Header(struct soap *, const char *, struct SOAP_ENV__Header *, const char *)
Definition: soapC.c:1126
SOAP_FMAC3 struct ns__getNewProxyReqResponse *SOAP_FMAC4 soap_get_ns__getNewProxyReqResponse(struct soap *, struct ns__getNewProxyReqResponse *, const char *, const char *)
Definition: soapC.c:2001
SOAP_FMAC3 struct ns__getProxyReqResponse **SOAP_FMAC4 soap_get_PointerTons__getProxyReqResponse(struct soap *, struct ns__getProxyReqResponse **, const char *, const char *)
Definition: soapC.c:2986
SOAP_FMAC3 struct ns__getTerminationTime *SOAP_FMAC4 soap_new_ns__getTerminationTime(struct soap *soap, int n)
Definition: soapC.c:1400
SOAP_FMAC3 struct SOAP_ENV__Reason *SOAP_FMAC4 soap_in_SOAP_ENV__Reason(struct soap *, const char *, struct SOAP_ENV__Reason *, const char *)
Definition: soapC.c:846
SOAP_FMAC3 struct ns__putProxyResponse *SOAP_FMAC4 soap_get_ns__putProxyResponse(struct soap *, struct ns__putProxyResponse *, const char *, const char *)
Definition: soapC.c:1675
SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTons__getTerminationTimeResponse(struct soap *, const char *, int, struct ns__getTerminationTimeResponse *const *, const char *)
Definition: soapC.c:2679
SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToSOAP_ENV__Code(struct soap *, struct SOAP_ENV__Code *const *, const char *, const char *)
Definition: soapC.c:2599
SOAP_FMAC3 void SOAP_FMAC4 soap_markelement(struct soap *, const void *, int)
Definition: soapC.c:460
SOAP_FMAC3 struct ns__renewProxyReqResponse *SOAP_FMAC4 soap_new_ns__renewProxyReqResponse(struct soap *soap, int n)
Definition: soapC.c:1827
SOAP_FMAC3 struct ns__destroyResponse *SOAP_FMAC4 soap_in_ns__destroyResponse(struct soap *, const char *, struct ns__destroyResponse *, const char *)
Definition: soapC.c:1286
SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTons__getProxyReqResponse(struct soap *, const char *, int, struct ns__getProxyReqResponse *const *, const char *)
Definition: soapC.c:2949
SOAP_FMAC3 struct ns__NewProxyReq **SOAP_FMAC4 soap_in_PointerTons__NewProxyReq(struct soap *, const char *, struct ns__NewProxyReq **, const char *)
Definition: soapC.c:2903
SOAP_FMAC3 struct ns__getProxyReqResponse *SOAP_FMAC4 soap_get_ns__getProxyReqResponse(struct soap *, struct ns__getProxyReqResponse *, const char *, const char *)
Definition: soapC.c:2169
SOAP_FMAC3 struct ns__getNewProxyReq *SOAP_FMAC4 soap_new_ns__getNewProxyReq(struct soap *soap, int n)
Definition: soapC.c:1901
SOAP_FMAC3 int SOAP_FMAC4 soap_put_string(struct soap *, char *const *, const char *, const char *)
Definition: soapC.c:3110
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTons__getNewProxyReqResponse(struct soap *, struct ns__getNewProxyReqResponse *const *)
Definition: soapC.c:2832
SOAP_FMAC3 struct ns__getNewProxyReqResponse *SOAP_FMAC4 soap_new_ns__getNewProxyReqResponse(struct soap *soap, int n)
Definition: soapC.c:1985
SOAP_FMAC3 int SOAP_FMAC4 soap_put_SOAP_ENV__Code(struct soap *, const struct SOAP_ENV__Code *, const char *, const char *)
Definition: soapC.c:1087
SOAP_FMAC3 int SOAP_FMAC4 soap_out_ns__renewProxyReqResponse(struct soap *, const char *, int, const struct ns__renewProxyReqResponse *, const char *)
Definition: soapC.c:1781
SOAP_FMAC3 struct ns__renewProxyReq *SOAP_FMAC4 soap_get_ns__renewProxyReq(struct soap *, struct ns__renewProxyReq *, const char *, const char *)
Definition: soapC.c:1759
SOAP_FMAC3 int SOAP_FMAC4 soap_put_ns__DelegationExceptionType(struct soap *, const struct ns__DelegationExceptionType *, const char *, const char *)
Definition: soapC.c:2424
SOAP_FMAC3 struct SOAP_ENV__Code *SOAP_FMAC4 soap_get_SOAP_ENV__Code(struct soap *, struct SOAP_ENV__Code *, const char *, const char *)
Definition: soapC.c:1094
SOAP_FMAC3 struct ns__DelegationExceptionType **SOAP_FMAC4 soap_in_PointerTons__DelegationExceptionType(struct soap *, const char *, struct ns__DelegationExceptionType **, const char *)
Definition: soapC.c:3011
SOAP_FMAC3 struct ns__renewProxyReqResponse *SOAP_FMAC4 soap_get_ns__renewProxyReqResponse(struct soap *, struct ns__renewProxyReqResponse *, const char *, const char *)
Definition: soapC.c:1843
SOAP_FMAC3 struct ns__DelegationExceptionType **SOAP_FMAC4 soap_get_PointerTons__DelegationExceptionType(struct soap *, struct ns__DelegationExceptionType **, const char *, const char *)
Definition: soapC.c:3040
SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTons__destroyResponse(struct soap *, const char *, int, struct ns__destroyResponse *const *, const char *)
Definition: soapC.c:2625
SOAP_FMAC3 int SOAP_FMAC4 soap_getindependent(struct soap *)
Definition: soapC.c:169
SOAP_FMAC3 int SOAP_FMAC4 soap_out_SOAP_ENV__Fault(struct soap *, const char *, int, const struct SOAP_ENV__Fault *, const char *)
Definition: soapC.c:681
SOAP_FMAC3 int SOAP_FMAC4 soap_put_SOAP_ENV__Reason(struct soap *, const struct SOAP_ENV__Reason *, const char *, const char *)
Definition: soapC.c:891
SOAP_FMAC3 struct _DelegationException *SOAP_FMAC4 soap_in__DelegationException(struct soap *, const char *, struct _DelegationException *, const char *)
Definition: soapC.c:2201
SOAP_FMAC3 int SOAP_FMAC4 soap_out_ns__putProxyResponse(struct soap *, const char *, int, const struct ns__putProxyResponse *, const char *)
Definition: soapC.c:1621
Definition: soapStub.h:142
SOAP_FMAC3 struct SOAP_ENV__Detail *SOAP_FMAC4 soap_get_SOAP_ENV__Detail(struct soap *, struct SOAP_ENV__Detail *, const char *, const char *)
Definition: soapC.c:995
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTons__getProxyReqResponse(struct soap *, struct ns__getProxyReqResponse *const *)
Definition: soapC.c:2940
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_ns__destroy(struct soap *, const struct ns__destroy *)
Definition: soapC.c:1188
SOAP_FMAC3 struct SOAP_ENV__Header *SOAP_FMAC4 soap_get_SOAP_ENV__Header(struct soap *, struct SOAP_ENV__Header *, const char *, const char *)
Definition: soapC.c:1172
SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToSOAP_ENV__Detail(struct soap *, const char *, int, struct SOAP_ENV__Detail *const *, const char *)
Definition: soapC.c:2508
SOAP_FMAC3 void SOAP_FMAC4 soap_default_SOAP_ENV__Header(struct soap *, struct SOAP_ENV__Header *)
Definition: soapC.c:1106
SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToSOAP_ENV__Code(struct soap *, const char *, int, struct SOAP_ENV__Code *const *, const char *)
Definition: soapC.c:2566
Definition: soapStub.h:175
Definition: soapStub.h:163
Definition: soapStub.h:101
SOAP_FMAC3 struct _DelegationException *SOAP_FMAC4 soap_get__DelegationException(struct soap *, struct _DelegationException *, const char *, const char *)
Definition: soapC.c:2253
SOAP_FMAC3 int SOAP_FMAC4 soap_out_SOAP_ENV__Header(struct soap *, const char *, int, const struct SOAP_ENV__Header *, const char *)
Definition: soapC.c:1118
SOAP_FMAC3 struct ns__getProxyReq *SOAP_FMAC4 soap_get_ns__getProxyReq(struct soap *, struct ns__getProxyReq *, const char *, const char *)
Definition: soapC.c:2085
SOAP_FMAC3 int *SOAP_FMAC4 soap_get_int(struct soap *, int *, const char *, const char *)
Definition: soapC.c:606
SOAP_FMAC3 struct ns__NewProxyReq *SOAP_FMAC4 soap_get_ns__NewProxyReq(struct soap *, struct ns__NewProxyReq *, const char *, const char *)
Definition: soapC.c:2347
SOAP_FMAC3 struct ns__putProxyResponse **SOAP_FMAC4 soap_in_PointerTons__putProxyResponse(struct soap *, const char *, struct ns__putProxyResponse **, const char *)
Definition: soapC.c:2741
SOAP_FMAC3 int SOAP_FMAC4 soap_put_ns__putProxy(struct soap *, const struct ns__putProxy *, const char *, const char *)
Definition: soapC.c:1594
Definition: soapStub.h:195
SOAP_FMAC3 char **SOAP_FMAC4 soap_new_string(struct soap *soap, int n)
Definition: soapC.c:3101
SOAP_FMAC3 struct SOAP_ENV__Fault *SOAP_FMAC4 soap_new_SOAP_ENV__Fault(struct soap *soap, int n)
Definition: soapC.c:792
SOAP_FMAC3 int SOAP_FMAC4 soap_put_ns__renewProxyReq(struct soap *, const struct ns__renewProxyReq *, const char *, const char *)
Definition: soapC.c:1752
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToSOAP_ENV__Detail(struct soap *, struct SOAP_ENV__Detail *const *)
Definition: soapC.c:2499
SOAP_FMAC3 int SOAP_FMAC4 soap_out_ns__getProxyReq(struct soap *, const char *, int, const struct ns__getProxyReq *, const char *)
Definition: soapC.c:2023
SOAP_FMAC3 struct ns__getNewProxyReq *SOAP_FMAC4 soap_get_ns__getNewProxyReq(struct soap *, struct ns__getNewProxyReq *, const char *, const char *)
Definition: soapC.c:1917
SOAP_FMAC3 char *SOAP_FMAC4 soap_new_byte(struct soap *soap, int n)
Definition: soapC.c:555
SOAP_FMAC3 struct ns__NewProxyReq *SOAP_FMAC4 soap_new_ns__NewProxyReq(struct soap *soap, int n)
Definition: soapC.c:2331
SOAP_FMAC3 struct ns__renewProxyReq *SOAP_FMAC4 soap_new_ns__renewProxyReq(struct soap *soap, int n)
Definition: soapC.c:1743
SOAP_FMAC3 int SOAP_FMAC4 soap_out_ns__getNewProxyReqResponse(struct soap *, const char *, int, const struct ns__getNewProxyReqResponse *, const char *)
Definition: soapC.c:1939
SOAP_FMAC3 int SOAP_FMAC4 soap_out_ns__destroyResponse(struct soap *, const char *, int, const struct ns__destroyResponse *, const char *)
Definition: soapC.c:1278
SOAP_FMAC3 char **SOAP_FMAC4 soap_get__QName(struct soap *, char **, const char *, const char *)
Definition: soapC.c:3074
SOAP_FMAC3 void *SOAP_FMAC4 soap_getelement(struct soap *, int *)
Definition: soapC.c:184
SOAP_FMAC3 char **SOAP_FMAC4 soap_in_string(struct soap *, const char *, char **, const char *)
Definition: soapC.c:3095
SOAP_FMAC3 struct ns__getProxyReqResponse **SOAP_FMAC4 soap_in_PointerTons__getProxyReqResponse(struct soap *, const char *, struct ns__getProxyReqResponse **, const char *)
Definition: soapC.c:2957
SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTons__getNewProxyReqResponse(struct soap *, struct ns__getNewProxyReqResponse *const *, const char *, const char *)
Definition: soapC.c:2871
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_ns__getProxyReqResponse(struct soap *, const struct ns__getProxyReqResponse *)
Definition: soapC.c:2099
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_ns__putProxyResponse(struct soap *, const struct ns__putProxyResponse *)
Definition: soapC.c:1614
SOAP_FMAC3 struct ns__getProxyReq *SOAP_FMAC4 soap_in_ns__getProxyReq(struct soap *, const char *, struct ns__getProxyReq *, const char *)
Definition: soapC.c:2033
SOAP_FMAC3 struct ns__getTerminationTimeResponse *SOAP_FMAC4 soap_in_ns__getTerminationTimeResponse(struct soap *, const char *, struct ns__getTerminationTimeResponse *, const char *)
Definition: soapC.c:1447
SOAP_FMAC3 int SOAP_FMAC4 soap_out_ns__renewProxyReq(struct soap *, const char *, int, const struct ns__renewProxyReq *, const char *)
Definition: soapC.c:1697
SOAP_FMAC3 struct ns__renewProxyReqResponse *SOAP_FMAC4 soap_in_ns__renewProxyReqResponse(struct soap *, const char *, struct ns__renewProxyReqResponse *, const char *)
Definition: soapC.c:1791
SOAP_FMAC3 int SOAP_FMAC4 soap_out_ns__getProxyReqResponse(struct soap *, const char *, int, const struct ns__getProxyReqResponse *, const char *)
Definition: soapC.c:2107
SOAP_FMAC3 void SOAP_FMAC4 soap_default_ns__destroyResponse(struct soap *, struct ns__destroyResponse *)
Definition: soapC.c:1266
SOAP_FMAC3 struct SOAP_ENV__Detail *SOAP_FMAC4 soap_new_SOAP_ENV__Detail(struct soap *soap, int n)
Definition: soapC.c:979
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_ns__renewProxyReqResponse(struct soap *, const struct ns__renewProxyReqResponse *)
Definition: soapC.c:1773
SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTons__NewProxyReq(struct soap *, struct ns__NewProxyReq *const *, const char *, const char *)
Definition: soapC.c:2925
SOAP_FMAC3 struct ns__destroy *SOAP_FMAC4 soap_new_ns__destroy(struct soap *soap, int n)
Definition: soapC.c:1242
SOAP_FMAC3 int SOAP_FMAC4 soap_put__QName(struct soap *, char *const *, const char *, const char *)
Definition: soapC.c:3067
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_ns__renewProxyReq(struct soap *, const struct ns__renewProxyReq *)
Definition: soapC.c:1689
SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTons__renewProxyReqResponse(struct soap *, const char *, int, struct ns__renewProxyReqResponse *const *, const char *)
Definition: soapC.c:2787
SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToSOAP_ENV__Reason(struct soap *, const char *, int, struct SOAP_ENV__Reason *const *, const char *)
Definition: soapC.c:2450
SOAP_FMAC3 int SOAP_FMAC4 soap_out_SOAP_ENV__Detail(struct soap *, const char *, int, const struct SOAP_ENV__Detail *, const char *)
Definition: soapC.c:926
SOAP_FMAC3 int SOAP_FMAC4 soap_out_SOAP_ENV__Reason(struct soap *, const char *, int, const struct SOAP_ENV__Reason *, const char *)
Definition: soapC.c:834
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_SOAP_ENV__Code(struct soap *, const struct SOAP_ENV__Code *)
Definition: soapC.c:1014
Definition: soapStub.h:272
SOAP_FMAC3 struct ns__DelegationExceptionType *SOAP_FMAC4 soap_in_ns__DelegationExceptionType(struct soap *, const char *, struct ns__DelegationExceptionType *, const char *)
Definition: soapC.c:2379
SOAP_FMAC3 void SOAP_FMAC4 soap_default_ns__getTerminationTimeResponse(struct soap *, struct ns__getTerminationTimeResponse *)
Definition: soapC.c:1424
SOAP_FMAC3 void SOAP_FMAC4 soap_default_ns__getProxyReq(struct soap *, struct ns__getProxyReq *)
Definition: soapC.c:2009
SOAP_FMAC3 struct ns__putProxy *SOAP_FMAC4 soap_new_ns__putProxy(struct soap *soap, int n)
Definition: soapC.c:1585
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTons__NewProxyReq(struct soap *, struct ns__NewProxyReq *const *)
Definition: soapC.c:2886
Definition: soapStub.h:91
Definition: soapStub.h:111
SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTons__putProxyResponse(struct soap *, const char *, int, struct ns__putProxyResponse *const *, const char *)
Definition: soapC.c:2733
SOAP_FMAC3 struct ns__renewProxyReq *SOAP_FMAC4 soap_in_ns__renewProxyReq(struct soap *, const char *, struct ns__renewProxyReq *, const char *)
Definition: soapC.c:1707
SOAP_FMAC3 int SOAP_FMAC4 soap_ignore_element(struct soap *)
Definition: soapC.c:353
SOAP_FMAC3 void SOAP_FMAC4 soap_default_ns__renewProxyReq(struct soap *, struct ns__renewProxyReq *)
Definition: soapC.c:1683
SOAP_FMAC3 struct ns__getTerminationTimeResponse *SOAP_FMAC4 soap_get_ns__getTerminationTimeResponse(struct soap *, struct ns__getTerminationTimeResponse *, const char *, const char *)
Definition: soapC.c:1507
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize__QName(struct soap *, char *const *)
Definition: soapC.c:3048
SOAP_FMAC3 struct _DelegationException *SOAP_FMAC4 soap_new__DelegationException(struct soap *soap, int n)
Definition: soapC.c:2237
SOAP_FMAC3 int SOAP_FMAC4 soap_put_int(struct soap *, const int *, const char *, const char *)
Definition: soapC.c:599
SOAP_FMAC3 struct ns__getNewProxyReqResponse **SOAP_FMAC4 soap_get_PointerTons__getNewProxyReqResponse(struct soap *, struct ns__getNewProxyReqResponse **, const char *, const char *)
Definition: soapC.c:2878
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize__DelegationException(struct soap *, const struct _DelegationException *)
Definition: soapC.c:2183
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTons__destroyResponse(struct soap *, struct ns__destroyResponse *const *)
Definition: soapC.c:2616
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_ns__NewProxyReq(struct soap *, const struct ns__NewProxyReq *)
Definition: soapC.c:2268
SOAP_FMAC3 struct ns__getTerminationTime *SOAP_FMAC4 soap_in_ns__getTerminationTime(struct soap *, const char *, struct ns__getTerminationTime *, const char *)
Definition: soapC.c:1364
SOAP_FMAC3 struct SOAP_ENV__Detail **SOAP_FMAC4 soap_in_PointerToSOAP_ENV__Detail(struct soap *, const char *, struct SOAP_ENV__Detail **, const char *)
Definition: soapC.c:2516
SOAP_FMAC3 void SOAP_FMAC4 soap_default_ns__renewProxyReqResponse(struct soap *, struct ns__renewProxyReqResponse *)
Definition: soapC.c:1767
SOAP_FMAC3 struct ns__NewProxyReq *SOAP_FMAC4 soap_in_ns__NewProxyReq(struct soap *, const char *, struct ns__NewProxyReq *, const char *)
Definition: soapC.c:2289
SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTons__DelegationExceptionType(struct soap *, struct ns__DelegationExceptionType *const *, const char *, const char *)
Definition: soapC.c:3033
SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTons__getTerminationTimeResponse(struct soap *, struct ns__getTerminationTimeResponse *const *, const char *, const char *)
Definition: soapC.c:2709
SOAP_FMAC3 struct SOAP_ENV__Detail *SOAP_FMAC4 soap_in_SOAP_ENV__Detail(struct soap *, const char *, struct SOAP_ENV__Detail *, const char *)
Definition: soapC.c:937
SOAP_FMAC3 struct ns__renewProxyReqResponse **SOAP_FMAC4 soap_get_PointerTons__renewProxyReqResponse(struct soap *, struct ns__renewProxyReqResponse **, const char *, const char *)
Definition: soapC.c:2824
SOAP_FMAC3 struct SOAP_ENV__Code **SOAP_FMAC4 soap_get_PointerToSOAP_ENV__Code(struct soap *, struct SOAP_ENV__Code **, const char *, const char *)
Definition: soapC.c:2606
SOAP_FMAC3 struct ns__putProxyResponse *SOAP_FMAC4 soap_in_ns__putProxyResponse(struct soap *, const char *, struct ns__putProxyResponse *, const char *)
Definition: soapC.c:1629
SOAP_FMAC3 struct ns__DelegationExceptionType *SOAP_FMAC4 soap_new_ns__DelegationExceptionType(struct soap *soap, int n)
Definition: soapC.c:2415
SOAP_FMAC3 struct ns__getTerminationTimeResponse **SOAP_FMAC4 soap_get_PointerTons__getTerminationTimeResponse(struct soap *, struct ns__getTerminationTimeResponse **, const char *, const char *)
Definition: soapC.c:2716
Definition: soapStub.h:260
Definition: delegation.h:14
SOAP_FMAC3 char **SOAP_FMAC4 soap_get_string(struct soap *, char **, const char *, const char *)
Definition: soapC.c:3117
SOAP_FMAC3 char *SOAP_FMAC4 soap_in_byte(struct soap *, const char *, char *, const char *)
Definition: soapC.c:549
Definition: delegation.h:3
SOAP_FMAC3 struct ns__DelegationExceptionType *SOAP_FMAC4 soap_get_ns__DelegationExceptionType(struct soap *, struct ns__DelegationExceptionType *, const char *, const char *)
Definition: soapC.c:2431
SOAP_FMAC3 time_t *SOAP_FMAC4 soap_new_dateTime(struct soap *soap, int n)
Definition: soapC.c:625
SOAP_FMAC3 struct ns__getProxyReqResponse *SOAP_FMAC4 soap_new_ns__getProxyReqResponse(struct soap *soap, int n)
Definition: soapC.c:2153
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_SOAP_ENV__Detail(struct soap *, const struct SOAP_ENV__Detail *)
Definition: soapC.c:918
SOAP_FMAC3 int SOAP_FMAC4 soap_out_ns__destroy(struct soap *, const char *, int, const struct ns__destroy *, const char *)
Definition: soapC.c:1196
SOAP_FMAC3 struct SOAP_ENV__Reason *SOAP_FMAC4 soap_new_SOAP_ENV__Reason(struct soap *soap, int n)
Definition: soapC.c:882
SOAP_FMAC3 int SOAP_FMAC4 soap_put_ns__getNewProxyReq(struct soap *, const struct ns__getNewProxyReq *, const char *, const char *)
Definition: soapC.c:1910
Definition: soapStub.h:185
SOAP_FMAC3 time_t *SOAP_FMAC4 soap_in_dateTime(struct soap *, const char *, time_t *, const char *)
Definition: soapC.c:619
SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTons__NewProxyReq(struct soap *, const char *, int, struct ns__NewProxyReq *const *, const char *)
Definition: soapC.c:2895
SOAP_FMAC3 struct ns__renewProxyReqResponse **SOAP_FMAC4 soap_in_PointerTons__renewProxyReqResponse(struct soap *, const char *, struct ns__renewProxyReqResponse **, const char *)
Definition: soapC.c:2795
SOAP_FMAC3 struct SOAP_ENV__Code *SOAP_FMAC4 soap_in_SOAP_ENV__Code(struct soap *, const char *, struct SOAP_ENV__Code *, const char *)
Definition: soapC.c:1036
SOAP_FMAC3 int SOAP_FMAC4 soap_put_ns__getTerminationTimeResponse(struct soap *, const struct ns__getTerminationTimeResponse *, const char *, const char *)
Definition: soapC.c:1500
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_SOAP_ENV__Fault(struct soap *, const struct SOAP_ENV__Fault *)
Definition: soapC.c:665
SOAP_FMAC3 struct ns__getNewProxyReqResponse **SOAP_FMAC4 soap_in_PointerTons__getNewProxyReqResponse(struct soap *, const char *, struct ns__getNewProxyReqResponse **, const char *)
Definition: soapC.c:2849
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTons__renewProxyReqResponse(struct soap *, struct ns__renewProxyReqResponse *const *)
Definition: soapC.c:2778
SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToSOAP_ENV__Reason(struct soap *, struct SOAP_ENV__Reason *const *, const char *, const char *)
Definition: soapC.c:2480
SOAP_FMAC3 struct ns__NewProxyReq **SOAP_FMAC4 soap_get_PointerTons__NewProxyReq(struct soap *, struct ns__NewProxyReq **, const char *, const char *)
Definition: soapC.c:2932
SOAP_FMAC3 int SOAP_FMAC4 soap_out_byte(struct soap *, const char *, int, const char *, const char *)
Definition: soapC.c:544
SOAP_FMAC3 struct SOAP_ENV__Fault *SOAP_FMAC4 soap_get_SOAP_ENV__Fault(struct soap *, struct SOAP_ENV__Fault *, const char *, const char *)
Definition: soapC.c:808
SOAP_FMAC3 int SOAP_FMAC4 soap_putindependent(struct soap *)
Definition: soapC.c:382
Definition: delegation.h:8
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTons__DelegationExceptionType(struct soap *, struct ns__DelegationExceptionType *const *)
Definition: soapC.c:2994
SOAP_FMAC3 int SOAP_FMAC4 soap_out__DelegationException(struct soap *, const char *, int, const struct _DelegationException *, const char *)
Definition: soapC.c:2191
SOAP_FMAC3 int SOAP_FMAC4 soap_put_SOAP_ENV__Detail(struct soap *, const struct SOAP_ENV__Detail *, const char *, const char *)
Definition: soapC.c:988
SOAP_FMAC3 struct SOAP_ENV__Fault *SOAP_FMAC4 soap_in_SOAP_ENV__Fault(struct soap *, const char *, struct SOAP_ENV__Fault *, const char *)
Definition: soapC.c:708
SOAP_FMAC3 struct ns__destroy *SOAP_FMAC4 soap_get_ns__destroy(struct soap *, struct ns__destroy *, const char *, const char *)
Definition: soapC.c:1258
SOAP_FMAC3 int SOAP_FMAC4 soap_put_ns__putProxyResponse(struct soap *, const struct ns__putProxyResponse *, const char *, const char *)
Definition: soapC.c:1668
Definition: soapStub.h:206
SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTons__getProxyReqResponse(struct soap *, struct ns__getProxyReqResponse *const *, const char *, const char *)
Definition: soapC.c:2979
SOAP_FMAC3 int SOAP_FMAC4 soap_out_ns__getTerminationTime(struct soap *, const char *, int, const struct ns__getTerminationTime *, const char *)
Definition: soapC.c:1354
SOAP_FMAC3 int SOAP_FMAC4 soap_out_ns__NewProxyReq(struct soap *, const char *, int, const struct ns__NewProxyReq *, const char *)
Definition: soapC.c:2277
SOAP_FMAC3 void SOAP_FMAC4 soap_default_SOAP_ENV__Fault(struct soap *, struct SOAP_ENV__Fault *)
Definition: soapC.c:651
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTons__getTerminationTimeResponse(struct soap *, struct ns__getTerminationTimeResponse *const *)
Definition: soapC.c:2670
SOAP_FMAC3 struct ns__getTerminationTime *SOAP_FMAC4 soap_get_ns__getTerminationTime(struct soap *, struct ns__getTerminationTime *, const char *, const char *)
Definition: soapC.c:1416
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_ns__getNewProxyReqResponse(struct soap *, const struct ns__getNewProxyReqResponse *)
Definition: soapC.c:1931
SOAP_FMAC3 int SOAP_FMAC4 soap_put_ns__renewProxyReqResponse(struct soap *, const struct ns__renewProxyReqResponse *, const char *, const char *)
Definition: soapC.c:1836
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_ns__DelegationExceptionType(struct soap *, const struct ns__DelegationExceptionType *)
Definition: soapC.c:2361
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_ns__getTerminationTimeResponse(struct soap *, const struct ns__getTerminationTimeResponse *)
Definition: soapC.c:1430
SOAP_FMAC3 struct ns__destroyResponse **SOAP_FMAC4 soap_in_PointerTons__destroyResponse(struct soap *, const char *, struct ns__destroyResponse **, const char *)
Definition: soapC.c:2633
SOAP_FMAC3 struct ns__destroyResponse *SOAP_FMAC4 soap_get_ns__destroyResponse(struct soap *, struct ns__destroyResponse *, const char *, const char *)
Definition: soapC.c:1332
SOAP_FMAC3 struct SOAP_ENV__Detail **SOAP_FMAC4 soap_get_PointerToSOAP_ENV__Detail(struct soap *, struct SOAP_ENV__Detail **, const char *, const char *)
Definition: soapC.c:2545
SOAP_FMAC3 int SOAP_FMAC4 soap_out_ns__DelegationExceptionType(struct soap *, const char *, int, const struct ns__DelegationExceptionType *, const char *)
Definition: soapC.c:2369
SOAP_FMAC3 int SOAP_FMAC4 soap_put_ns__getProxyReqResponse(struct soap *, const struct ns__getProxyReqResponse *, const char *, const char *)
Definition: soapC.c:2162
SOAP_FMAC3 int SOAP_FMAC4 soap_out_string(struct soap *, const char *, int, char *const *, const char *)
Definition: soapC.c:3090
SOAP_FMAC3 struct ns__putProxy *SOAP_FMAC4 soap_in_ns__putProxy(struct soap *, const char *, struct ns__putProxy *, const char *)
Definition: soapC.c:1543
SOAP_FMAC3 int *SOAP_FMAC4 soap_new_int(struct soap *soap, int n)
Definition: soapC.c:590
SOAP_FMAC3 void SOAP_FMAC4 soap_default_ns__DelegationExceptionType(struct soap *, struct ns__DelegationExceptionType *)
Definition: soapC.c:2355
SOAP_FMAC3 struct ns__getProxyReqResponse *SOAP_FMAC4 soap_in_ns__getProxyReqResponse(struct soap *, const char *, struct ns__getProxyReqResponse *, const char *)
Definition: soapC.c:2117
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_ns__destroyResponse(struct soap *, const struct ns__destroyResponse *)
Definition: soapC.c:1271
SOAP_FMAC3 struct ns__getNewProxyReqResponse *SOAP_FMAC4 soap_in_ns__getNewProxyReqResponse(struct soap *, const char *, struct ns__getNewProxyReqResponse *, const char *)
Definition: soapC.c:1949
SOAP_FMAC3 void SOAP_FMAC4 soap_default_ns__getNewProxyReqResponse(struct soap *, struct ns__getNewProxyReqResponse *)
Definition: soapC.c:1925
Definition: soapStub.h:231
SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTons__getNewProxyReqResponse(struct soap *, const char *, int, struct ns__getNewProxyReqResponse *const *, const char *)
Definition: soapC.c:2841
Definition: soapStub.h:245
SOAP_FMAC3 int SOAP_FMAC4 soap_put_SOAP_ENV__Fault(struct soap *, const struct SOAP_ENV__Fault *, const char *, const char *)
Definition: soapC.c:801
SOAP_FMAC3 struct ns__putProxy *SOAP_FMAC4 soap_get_ns__putProxy(struct soap *, struct ns__putProxy *, const char *, const char *)
Definition: soapC.c:1601
SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTons__DelegationExceptionType(struct soap *, const char *, int, struct ns__DelegationExceptionType *const *, const char *)
Definition: soapC.c:3003
SOAP_FMAC3 int SOAP_FMAC4 soap_out_ns__getNewProxyReq(struct soap *, const char *, int, const struct ns__getNewProxyReq *, const char *)
Definition: soapC.c:1863
SOAP_FMAC3 struct ns__putProxyResponse **SOAP_FMAC4 soap_get_PointerTons__putProxyResponse(struct soap *, struct ns__putProxyResponse **, const char *, const char *)
Definition: soapC.c:2770
SOAP_FMAC3 struct ns__getNewProxyReq *SOAP_FMAC4 soap_in_ns__getNewProxyReq(struct soap *, const char *, struct ns__getNewProxyReq *, const char *)
Definition: soapC.c:1871
SOAP_FMAC3 int SOAP_FMAC4 soap_put_SOAP_ENV__Header(struct soap *, const struct SOAP_ENV__Header *, const char *, const char *)
Definition: soapC.c:1165
SOAP_FMAC3 int SOAP_FMAC4 soap_out_int(struct soap *, const char *, int, const int *, const char *)
Definition: soapC.c:579
Definition: soapStub.h:152
SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTons__destroyResponse(struct soap *, struct ns__destroyResponse *const *, const char *, const char *)
Definition: soapC.c:2655
SOAP_FMAC3 int SOAP_FMAC4 soap_out_dateTime(struct soap *, const char *, int, const time_t *, const char *)
Definition: soapC.c:614
SOAP_FMAC3 int SOAP_FMAC4 soap_out_ns__putProxy(struct soap *, const char *, int, const struct ns__putProxy *, const char *)
Definition: soapC.c:1531
SOAP_FMAC3 struct ns__getProxyReq *SOAP_FMAC4 soap_new_ns__getProxyReq(struct soap *soap, int n)
Definition: soapC.c:2069
SOAP_FMAC3 int SOAP_FMAC4 soap_out_ns__getTerminationTimeResponse(struct soap *, const char *, int, const struct ns__getTerminationTimeResponse *, const char *)
Definition: soapC.c:1437