You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1749 lines
87 KiB
1749 lines
87 KiB
/* soapH.h
|
|
Generated by gSOAP 2.8.131 for factory.h
|
|
|
|
gSOAP XML Web services tools
|
|
Copyright (C) 2000-2023, Robert van Engelen, Genivia Inc. All Rights Reserved.
|
|
The soapcpp2 tool and its generated software are released under the GPL.
|
|
This program is released under the GPL with the additional exemption that
|
|
compiling, linking, and/or using OpenSSL is allowed.
|
|
--------------------------------------------------------------------------------
|
|
A commercial use license is available from Genivia Inc., contact@genivia.com
|
|
--------------------------------------------------------------------------------
|
|
*/
|
|
|
|
#ifndef soapH_H
|
|
#define soapH_H
|
|
#include "soapStub.h"
|
|
#ifndef WITH_NOIDREF
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
SOAP_FMAC3 void SOAP_FMAC4 soap_markelement(struct soap*, const void*, int);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
SOAP_FMAC3 int SOAP_FMAC4 soap_putindependent(struct soap*);
|
|
SOAP_FMAC3 int SOAP_FMAC4 soap_getindependent(struct soap*);
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
SOAP_FMAC3 void * SOAP_FMAC4 soap_getelement(struct soap*, const char*, int*);
|
|
SOAP_FMAC3 int SOAP_FMAC4 soap_putelement(struct soap*, const void*, const char*, int, int);
|
|
SOAP_FMAC3 void * SOAP_FMAC4 soap_dupelement(struct soap*, const void*, int);
|
|
SOAP_FMAC3 void SOAP_FMAC4 soap_delelement(const void*, int);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
SOAP_FMAC3 int SOAP_FMAC4 soap_ignore_element(struct soap*);
|
|
SOAP_FMAC3 void * SOAP_FMAC4 soap_instantiate(struct soap*, int, const char*, const char*, size_t*);
|
|
SOAP_FMAC3 int SOAP_FMAC4 soap_fdelete(struct soap *soap, struct soap_clist*);
|
|
SOAP_FMAC3 int SOAP_FMAC4 soap_fbase(int, int);
|
|
SOAP_FMAC3 void SOAP_FMAC4 soap_finsert(struct soap*, int, int, void*, size_t, const void*, void**);
|
|
|
|
#ifndef SOAP_TYPE_byte_DEFINED
|
|
#define SOAP_TYPE_byte_DEFINED
|
|
|
|
inline void soap_default_byte(struct soap *soap, char *a)
|
|
{
|
|
(void)soap; /* appease -Wall -Werror */
|
|
#ifdef SOAP_DEFAULT_byte
|
|
*a = SOAP_DEFAULT_byte;
|
|
#else
|
|
*a = (char)0;
|
|
#endif
|
|
}
|
|
SOAP_FMAC3 int SOAP_FMAC4 soap_out_byte(struct soap*, const char*, int, const char *, const char*);
|
|
SOAP_FMAC3 char * SOAP_FMAC4 soap_in_byte(struct soap*, const char*, char *, const char*);
|
|
|
|
SOAP_FMAC3 char * SOAP_FMAC4 soap_new_byte(struct soap *soap, int n = -1);
|
|
SOAP_FMAC3 int SOAP_FMAC4 soap_put_byte(struct soap*, const char *, const char*, const char*);
|
|
|
|
inline int soap_write_byte(struct soap *soap, char const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (p)
|
|
{ if (soap_begin_send(soap) || ::soap_put_byte(soap, p, "byte", "") || soap_end_send(soap))
|
|
return soap->error;
|
|
}
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_PUT_byte(struct soap *soap, const char *URL, char const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_byte(soap, p, "byte", "") || soap_end_send(soap) || soap_recv_empty_response(soap))
|
|
return soap_closesock(soap);
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_PATCH_byte(struct soap *soap, const char *URL, char const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_byte(soap, p, "byte", "") || soap_end_send(soap) || soap_recv_empty_response(soap))
|
|
return soap_closesock(soap);
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_POST_send_byte(struct soap *soap, const char *URL, char const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_byte(soap, p, "byte", "") || soap_end_send(soap))
|
|
return soap_closesock(soap);
|
|
return SOAP_OK;
|
|
}
|
|
SOAP_FMAC3 char * SOAP_FMAC4 soap_get_byte(struct soap*, char *, const char*, const char*);
|
|
|
|
inline int soap_read_byte(struct soap *soap, char *p)
|
|
{
|
|
if (p)
|
|
{ if (soap_begin_recv(soap) || ::soap_get_byte(soap, p, NULL, NULL) == NULL || soap_end_recv(soap))
|
|
return soap->error;
|
|
}
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_GET_byte(struct soap *soap, const char *URL, char *p)
|
|
{
|
|
if (soap_GET(soap, URL, NULL) || ::soap_read_byte(soap, p))
|
|
return soap_closesock(soap);
|
|
return soap_closesock(soap);
|
|
}
|
|
|
|
inline int soap_POST_recv_byte(struct soap *soap, char *p)
|
|
{
|
|
if (::soap_read_byte(soap, p))
|
|
return soap_closesock(soap);
|
|
return soap_closesock(soap);
|
|
}
|
|
#endif
|
|
|
|
#ifndef SOAP_TYPE_int_DEFINED
|
|
#define SOAP_TYPE_int_DEFINED
|
|
|
|
inline void soap_default_int(struct soap *soap, int *a)
|
|
{
|
|
(void)soap; /* appease -Wall -Werror */
|
|
#ifdef SOAP_DEFAULT_int
|
|
*a = SOAP_DEFAULT_int;
|
|
#else
|
|
*a = (int)0;
|
|
#endif
|
|
}
|
|
SOAP_FMAC3 int SOAP_FMAC4 soap_out_int(struct soap*, const char*, int, const int *, const char*);
|
|
SOAP_FMAC3 int * SOAP_FMAC4 soap_in_int(struct soap*, const char*, int *, const char*);
|
|
|
|
SOAP_FMAC3 int * SOAP_FMAC4 soap_new_int(struct soap *soap, int n = -1);
|
|
SOAP_FMAC3 int SOAP_FMAC4 soap_put_int(struct soap*, const int *, const char*, const char*);
|
|
|
|
inline int soap_write_int(struct soap *soap, int const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (p)
|
|
{ if (soap_begin_send(soap) || ::soap_put_int(soap, p, "int", "") || soap_end_send(soap))
|
|
return soap->error;
|
|
}
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_PUT_int(struct soap *soap, const char *URL, int const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_int(soap, p, "int", "") || soap_end_send(soap) || soap_recv_empty_response(soap))
|
|
return soap_closesock(soap);
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_PATCH_int(struct soap *soap, const char *URL, int const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_int(soap, p, "int", "") || soap_end_send(soap) || soap_recv_empty_response(soap))
|
|
return soap_closesock(soap);
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_POST_send_int(struct soap *soap, const char *URL, int const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_int(soap, p, "int", "") || soap_end_send(soap))
|
|
return soap_closesock(soap);
|
|
return SOAP_OK;
|
|
}
|
|
SOAP_FMAC3 int * SOAP_FMAC4 soap_get_int(struct soap*, int *, const char*, const char*);
|
|
|
|
inline int soap_read_int(struct soap *soap, int *p)
|
|
{
|
|
if (p)
|
|
{ if (soap_begin_recv(soap) || ::soap_get_int(soap, p, NULL, NULL) == NULL || soap_end_recv(soap))
|
|
return soap->error;
|
|
}
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_GET_int(struct soap *soap, const char *URL, int *p)
|
|
{
|
|
if (soap_GET(soap, URL, NULL) || ::soap_read_int(soap, p))
|
|
return soap_closesock(soap);
|
|
return soap_closesock(soap);
|
|
}
|
|
|
|
inline int soap_POST_recv_int(struct soap *soap, int *p)
|
|
{
|
|
if (::soap_read_int(soap, p))
|
|
return soap_closesock(soap);
|
|
return soap_closesock(soap);
|
|
}
|
|
#endif
|
|
|
|
#ifndef SOAP_TYPE__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM_DEFINED
|
|
#define SOAP_TYPE__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM_DEFINED
|
|
SOAP_FMAC3 int SOAP_FMAC4 soap_out__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM(struct soap*, const char*, int, const _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM *, const char*);
|
|
SOAP_FMAC3 _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM * SOAP_FMAC4 soap_in__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM(struct soap*, const char*, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM *, const char*);
|
|
SOAP_FMAC1 _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM * SOAP_FMAC2 soap_instantiate__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM(struct soap*, int, const char*, const char*, size_t*);
|
|
|
|
inline _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM * soap_new__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM(struct soap *soap, int n = -1)
|
|
{
|
|
return soap_instantiate__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM(soap, n, NULL, NULL, NULL);
|
|
}
|
|
|
|
inline _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM * soap_new_req__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM(
|
|
struct soap *soap)
|
|
{
|
|
_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM *_p = ::soap_new__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM(soap);
|
|
if (_p)
|
|
{ _p->soap_default(soap);
|
|
}
|
|
return _p;
|
|
}
|
|
|
|
inline _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM * soap_new_set__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM(
|
|
struct soap *soap,
|
|
char *PSPID,
|
|
char *ZPSPID,
|
|
char *MATNR,
|
|
char *ZZD,
|
|
char *ZGH,
|
|
char *SERNR,
|
|
char *WERKS,
|
|
char *RSPOS)
|
|
{
|
|
_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM *_p = ::soap_new__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM(soap);
|
|
if (_p)
|
|
{ _p->soap_default(soap);
|
|
_p->_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM::PSPID = PSPID;
|
|
_p->_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM::ZPSPID = ZPSPID;
|
|
_p->_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM::MATNR = MATNR;
|
|
_p->_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM::ZZD = ZZD;
|
|
_p->_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM::ZGH = ZGH;
|
|
_p->_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM::SERNR = SERNR;
|
|
_p->_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM::WERKS = WERKS;
|
|
_p->_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM::RSPOS = RSPOS;
|
|
}
|
|
return _p;
|
|
}
|
|
|
|
inline int soap_write__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM(struct soap *soap, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "ns1:DT_FACTORY_NUMBER_REQ-ITEMS-ITEM", p->soap_type() == SOAP_TYPE__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM ? "" : NULL) || soap_end_send(soap))
|
|
return soap->error;
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_PUT__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM(struct soap *soap, const char *URL, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "ns1:DT_FACTORY_NUMBER_REQ-ITEMS-ITEM", p->soap_type() == SOAP_TYPE__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap))
|
|
return soap_closesock(soap);
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_PATCH__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM(struct soap *soap, const char *URL, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "ns1:DT_FACTORY_NUMBER_REQ-ITEMS-ITEM", p->soap_type() == SOAP_TYPE__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap))
|
|
return soap_closesock(soap);
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_POST_send__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM(struct soap *soap, const char *URL, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "ns1:DT_FACTORY_NUMBER_REQ-ITEMS-ITEM", p->soap_type() == SOAP_TYPE__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM ? "" : NULL) || soap_end_send(soap))
|
|
return soap_closesock(soap);
|
|
return SOAP_OK;
|
|
}
|
|
SOAP_FMAC3 _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM * SOAP_FMAC4 soap_get__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM(struct soap*, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM *, const char*, const char*);
|
|
|
|
inline int soap_read__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM(struct soap *soap, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM *p)
|
|
{
|
|
if (p)
|
|
{ p->soap_default(soap);
|
|
if (soap_begin_recv(soap) || ::soap_get__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM(soap, p, NULL, NULL) == NULL || soap_end_recv(soap))
|
|
return soap->error;
|
|
}
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_GET__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM(struct soap *soap, const char *URL, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM *p)
|
|
{
|
|
if (soap_GET(soap, URL, NULL) || ::soap_read__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM(soap, p))
|
|
return soap_closesock(soap);
|
|
return soap_closesock(soap);
|
|
}
|
|
|
|
inline int soap_POST_recv__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM(struct soap *soap, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM *p)
|
|
{
|
|
if (::soap_read__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM(soap, p))
|
|
return soap_closesock(soap);
|
|
return soap_closesock(soap);
|
|
}
|
|
#endif
|
|
|
|
#ifndef SOAP_TYPE__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_DEFINED
|
|
#define SOAP_TYPE__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_DEFINED
|
|
SOAP_FMAC3 int SOAP_FMAC4 soap_out__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS(struct soap*, const char*, int, const _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS *, const char*);
|
|
SOAP_FMAC3 _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS * SOAP_FMAC4 soap_in__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS(struct soap*, const char*, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS *, const char*);
|
|
SOAP_FMAC1 _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS * SOAP_FMAC2 soap_instantiate__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS(struct soap*, int, const char*, const char*, size_t*);
|
|
|
|
inline _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS * soap_new__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS(struct soap *soap, int n = -1)
|
|
{
|
|
return soap_instantiate__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS(soap, n, NULL, NULL, NULL);
|
|
}
|
|
|
|
inline _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS * soap_new_req__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS(
|
|
struct soap *soap,
|
|
int __sizeITEM,
|
|
_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM *ITEM)
|
|
{
|
|
_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS *_p = ::soap_new__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS(soap);
|
|
if (_p)
|
|
{ _p->soap_default(soap);
|
|
_p->_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS::__sizeITEM = __sizeITEM;
|
|
_p->_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS::ITEM = ITEM;
|
|
}
|
|
return _p;
|
|
}
|
|
|
|
inline _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS * soap_new_set__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS(
|
|
struct soap *soap,
|
|
int __sizeITEM,
|
|
_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM *ITEM)
|
|
{
|
|
_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS *_p = ::soap_new__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS(soap);
|
|
if (_p)
|
|
{ _p->soap_default(soap);
|
|
_p->_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS::__sizeITEM = __sizeITEM;
|
|
_p->_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS::ITEM = ITEM;
|
|
}
|
|
return _p;
|
|
}
|
|
|
|
inline int soap_write__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS(struct soap *soap, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "ns1:DT_FACTORY_NUMBER_REQ-ITEMS", p->soap_type() == SOAP_TYPE__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS ? "" : NULL) || soap_end_send(soap))
|
|
return soap->error;
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_PUT__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS(struct soap *soap, const char *URL, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "ns1:DT_FACTORY_NUMBER_REQ-ITEMS", p->soap_type() == SOAP_TYPE__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap))
|
|
return soap_closesock(soap);
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_PATCH__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS(struct soap *soap, const char *URL, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "ns1:DT_FACTORY_NUMBER_REQ-ITEMS", p->soap_type() == SOAP_TYPE__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap))
|
|
return soap_closesock(soap);
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_POST_send__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS(struct soap *soap, const char *URL, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "ns1:DT_FACTORY_NUMBER_REQ-ITEMS", p->soap_type() == SOAP_TYPE__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS ? "" : NULL) || soap_end_send(soap))
|
|
return soap_closesock(soap);
|
|
return SOAP_OK;
|
|
}
|
|
SOAP_FMAC3 _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS * SOAP_FMAC4 soap_get__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS(struct soap*, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS *, const char*, const char*);
|
|
|
|
inline int soap_read__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS(struct soap *soap, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS *p)
|
|
{
|
|
if (p)
|
|
{ p->soap_default(soap);
|
|
if (soap_begin_recv(soap) || ::soap_get__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS(soap, p, NULL, NULL) == NULL || soap_end_recv(soap))
|
|
return soap->error;
|
|
}
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_GET__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS(struct soap *soap, const char *URL, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS *p)
|
|
{
|
|
if (soap_GET(soap, URL, NULL) || ::soap_read__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS(soap, p))
|
|
return soap_closesock(soap);
|
|
return soap_closesock(soap);
|
|
}
|
|
|
|
inline int soap_POST_recv__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS(struct soap *soap, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS *p)
|
|
{
|
|
if (::soap_read__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS(soap, p))
|
|
return soap_closesock(soap);
|
|
return soap_closesock(soap);
|
|
}
|
|
#endif
|
|
|
|
#ifndef SOAP_TYPE__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_BASEINFO_DEFINED
|
|
#define SOAP_TYPE__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_BASEINFO_DEFINED
|
|
SOAP_FMAC3 int SOAP_FMAC4 soap_out__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_BASEINFO(struct soap*, const char*, int, const _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_BASEINFO *, const char*);
|
|
SOAP_FMAC3 _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_BASEINFO * SOAP_FMAC4 soap_in__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_BASEINFO(struct soap*, const char*, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_BASEINFO *, const char*);
|
|
SOAP_FMAC1 _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_BASEINFO * SOAP_FMAC2 soap_instantiate__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_BASEINFO(struct soap*, int, const char*, const char*, size_t*);
|
|
|
|
inline _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_BASEINFO * soap_new__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_BASEINFO(struct soap *soap, int n = -1)
|
|
{
|
|
return soap_instantiate__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_BASEINFO(soap, n, NULL, NULL, NULL);
|
|
}
|
|
|
|
inline _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_BASEINFO * soap_new_req__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_BASEINFO(
|
|
struct soap *soap)
|
|
{
|
|
_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_BASEINFO *_p = ::soap_new__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_BASEINFO(soap);
|
|
if (_p)
|
|
{ _p->soap_default(soap);
|
|
}
|
|
return _p;
|
|
}
|
|
|
|
inline _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_BASEINFO * soap_new_set__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_BASEINFO(
|
|
struct soap *soap,
|
|
char *REQ_USCORETRACE_USCOREID)
|
|
{
|
|
_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_BASEINFO *_p = ::soap_new__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_BASEINFO(soap);
|
|
if (_p)
|
|
{ _p->soap_default(soap);
|
|
_p->_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_BASEINFO::REQ_USCORETRACE_USCOREID = REQ_USCORETRACE_USCOREID;
|
|
}
|
|
return _p;
|
|
}
|
|
|
|
inline int soap_write__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_BASEINFO(struct soap *soap, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_BASEINFO const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "ns1:DT_FACTORY_NUMBER_REQ-BASEINFO", p->soap_type() == SOAP_TYPE__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_BASEINFO ? "" : NULL) || soap_end_send(soap))
|
|
return soap->error;
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_PUT__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_BASEINFO(struct soap *soap, const char *URL, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_BASEINFO const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "ns1:DT_FACTORY_NUMBER_REQ-BASEINFO", p->soap_type() == SOAP_TYPE__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_BASEINFO ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap))
|
|
return soap_closesock(soap);
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_PATCH__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_BASEINFO(struct soap *soap, const char *URL, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_BASEINFO const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "ns1:DT_FACTORY_NUMBER_REQ-BASEINFO", p->soap_type() == SOAP_TYPE__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_BASEINFO ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap))
|
|
return soap_closesock(soap);
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_POST_send__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_BASEINFO(struct soap *soap, const char *URL, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_BASEINFO const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "ns1:DT_FACTORY_NUMBER_REQ-BASEINFO", p->soap_type() == SOAP_TYPE__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_BASEINFO ? "" : NULL) || soap_end_send(soap))
|
|
return soap_closesock(soap);
|
|
return SOAP_OK;
|
|
}
|
|
SOAP_FMAC3 _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_BASEINFO * SOAP_FMAC4 soap_get__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_BASEINFO(struct soap*, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_BASEINFO *, const char*, const char*);
|
|
|
|
inline int soap_read__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_BASEINFO(struct soap *soap, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_BASEINFO *p)
|
|
{
|
|
if (p)
|
|
{ p->soap_default(soap);
|
|
if (soap_begin_recv(soap) || ::soap_get__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_BASEINFO(soap, p, NULL, NULL) == NULL || soap_end_recv(soap))
|
|
return soap->error;
|
|
}
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_GET__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_BASEINFO(struct soap *soap, const char *URL, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_BASEINFO *p)
|
|
{
|
|
if (soap_GET(soap, URL, NULL) || ::soap_read__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_BASEINFO(soap, p))
|
|
return soap_closesock(soap);
|
|
return soap_closesock(soap);
|
|
}
|
|
|
|
inline int soap_POST_recv__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_BASEINFO(struct soap *soap, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_BASEINFO *p)
|
|
{
|
|
if (::soap_read__ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_BASEINFO(soap, p))
|
|
return soap_closesock(soap);
|
|
return soap_closesock(soap);
|
|
}
|
|
#endif
|
|
|
|
#ifndef SOAP_TYPE__ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_ZTABLE_USCORERETURN_DEFINED
|
|
#define SOAP_TYPE__ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_ZTABLE_USCORERETURN_DEFINED
|
|
SOAP_FMAC3 int SOAP_FMAC4 soap_out__ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_ZTABLE_USCORERETURN(struct soap*, const char*, int, const _ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_ZTABLE_USCORERETURN *, const char*);
|
|
SOAP_FMAC3 _ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_ZTABLE_USCORERETURN * SOAP_FMAC4 soap_in__ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_ZTABLE_USCORERETURN(struct soap*, const char*, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_ZTABLE_USCORERETURN *, const char*);
|
|
SOAP_FMAC1 _ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_ZTABLE_USCORERETURN * SOAP_FMAC2 soap_instantiate__ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_ZTABLE_USCORERETURN(struct soap*, int, const char*, const char*, size_t*);
|
|
|
|
inline _ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_ZTABLE_USCORERETURN * soap_new__ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_ZTABLE_USCORERETURN(struct soap *soap, int n = -1)
|
|
{
|
|
return soap_instantiate__ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_ZTABLE_USCORERETURN(soap, n, NULL, NULL, NULL);
|
|
}
|
|
|
|
inline _ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_ZTABLE_USCORERETURN * soap_new_req__ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_ZTABLE_USCORERETURN(
|
|
struct soap *soap)
|
|
{
|
|
_ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_ZTABLE_USCORERETURN *_p = ::soap_new__ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_ZTABLE_USCORERETURN(soap);
|
|
if (_p)
|
|
{ _p->soap_default(soap);
|
|
}
|
|
return _p;
|
|
}
|
|
|
|
inline _ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_ZTABLE_USCORERETURN * soap_new_set__ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_ZTABLE_USCORERETURN(
|
|
struct soap *soap,
|
|
char *SERNR,
|
|
char *TYPE,
|
|
char *MESSAGE)
|
|
{
|
|
_ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_ZTABLE_USCORERETURN *_p = ::soap_new__ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_ZTABLE_USCORERETURN(soap);
|
|
if (_p)
|
|
{ _p->soap_default(soap);
|
|
_p->_ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_ZTABLE_USCORERETURN::SERNR = SERNR;
|
|
_p->_ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_ZTABLE_USCORERETURN::TYPE = TYPE;
|
|
_p->_ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_ZTABLE_USCORERETURN::MESSAGE = MESSAGE;
|
|
}
|
|
return _p;
|
|
}
|
|
|
|
inline int soap_write__ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_ZTABLE_USCORERETURN(struct soap *soap, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_ZTABLE_USCORERETURN const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "ns1:DT_FACTORY_NUMBER_RSP-ZTABLE_RETURN", p->soap_type() == SOAP_TYPE__ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_ZTABLE_USCORERETURN ? "" : NULL) || soap_end_send(soap))
|
|
return soap->error;
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_PUT__ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_ZTABLE_USCORERETURN(struct soap *soap, const char *URL, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_ZTABLE_USCORERETURN const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "ns1:DT_FACTORY_NUMBER_RSP-ZTABLE_RETURN", p->soap_type() == SOAP_TYPE__ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_ZTABLE_USCORERETURN ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap))
|
|
return soap_closesock(soap);
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_PATCH__ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_ZTABLE_USCORERETURN(struct soap *soap, const char *URL, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_ZTABLE_USCORERETURN const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "ns1:DT_FACTORY_NUMBER_RSP-ZTABLE_RETURN", p->soap_type() == SOAP_TYPE__ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_ZTABLE_USCORERETURN ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap))
|
|
return soap_closesock(soap);
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_POST_send__ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_ZTABLE_USCORERETURN(struct soap *soap, const char *URL, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_ZTABLE_USCORERETURN const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "ns1:DT_FACTORY_NUMBER_RSP-ZTABLE_RETURN", p->soap_type() == SOAP_TYPE__ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_ZTABLE_USCORERETURN ? "" : NULL) || soap_end_send(soap))
|
|
return soap_closesock(soap);
|
|
return SOAP_OK;
|
|
}
|
|
SOAP_FMAC3 _ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_ZTABLE_USCORERETURN * SOAP_FMAC4 soap_get__ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_ZTABLE_USCORERETURN(struct soap*, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_ZTABLE_USCORERETURN *, const char*, const char*);
|
|
|
|
inline int soap_read__ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_ZTABLE_USCORERETURN(struct soap *soap, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_ZTABLE_USCORERETURN *p)
|
|
{
|
|
if (p)
|
|
{ p->soap_default(soap);
|
|
if (soap_begin_recv(soap) || ::soap_get__ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_ZTABLE_USCORERETURN(soap, p, NULL, NULL) == NULL || soap_end_recv(soap))
|
|
return soap->error;
|
|
}
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_GET__ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_ZTABLE_USCORERETURN(struct soap *soap, const char *URL, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_ZTABLE_USCORERETURN *p)
|
|
{
|
|
if (soap_GET(soap, URL, NULL) || ::soap_read__ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_ZTABLE_USCORERETURN(soap, p))
|
|
return soap_closesock(soap);
|
|
return soap_closesock(soap);
|
|
}
|
|
|
|
inline int soap_POST_recv__ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_ZTABLE_USCORERETURN(struct soap *soap, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_ZTABLE_USCORERETURN *p)
|
|
{
|
|
if (::soap_read__ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_ZTABLE_USCORERETURN(soap, p))
|
|
return soap_closesock(soap);
|
|
return soap_closesock(soap);
|
|
}
|
|
#endif
|
|
|
|
#ifndef SOAP_TYPE__ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_RSP_USCOREBASEINFO_DEFINED
|
|
#define SOAP_TYPE__ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_RSP_USCOREBASEINFO_DEFINED
|
|
SOAP_FMAC3 int SOAP_FMAC4 soap_out__ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_RSP_USCOREBASEINFO(struct soap*, const char*, int, const _ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_RSP_USCOREBASEINFO *, const char*);
|
|
SOAP_FMAC3 _ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_RSP_USCOREBASEINFO * SOAP_FMAC4 soap_in__ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_RSP_USCOREBASEINFO(struct soap*, const char*, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_RSP_USCOREBASEINFO *, const char*);
|
|
SOAP_FMAC1 _ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_RSP_USCOREBASEINFO * SOAP_FMAC2 soap_instantiate__ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_RSP_USCOREBASEINFO(struct soap*, int, const char*, const char*, size_t*);
|
|
|
|
inline _ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_RSP_USCOREBASEINFO * soap_new__ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_RSP_USCOREBASEINFO(struct soap *soap, int n = -1)
|
|
{
|
|
return soap_instantiate__ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_RSP_USCOREBASEINFO(soap, n, NULL, NULL, NULL);
|
|
}
|
|
|
|
inline _ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_RSP_USCOREBASEINFO * soap_new_req__ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_RSP_USCOREBASEINFO(
|
|
struct soap *soap)
|
|
{
|
|
_ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_RSP_USCOREBASEINFO *_p = ::soap_new__ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_RSP_USCOREBASEINFO(soap);
|
|
if (_p)
|
|
{ _p->soap_default(soap);
|
|
}
|
|
return _p;
|
|
}
|
|
|
|
inline _ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_RSP_USCOREBASEINFO * soap_new_set__ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_RSP_USCOREBASEINFO(
|
|
struct soap *soap,
|
|
char *REQ_USCORETRACE_USCOREID)
|
|
{
|
|
_ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_RSP_USCOREBASEINFO *_p = ::soap_new__ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_RSP_USCOREBASEINFO(soap);
|
|
if (_p)
|
|
{ _p->soap_default(soap);
|
|
_p->_ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_RSP_USCOREBASEINFO::REQ_USCORETRACE_USCOREID = REQ_USCORETRACE_USCOREID;
|
|
}
|
|
return _p;
|
|
}
|
|
|
|
inline int soap_write__ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_RSP_USCOREBASEINFO(struct soap *soap, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_RSP_USCOREBASEINFO const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "ns1:DT_FACTORY_NUMBER_RSP-RSP_BASEINFO", p->soap_type() == SOAP_TYPE__ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_RSP_USCOREBASEINFO ? "" : NULL) || soap_end_send(soap))
|
|
return soap->error;
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_PUT__ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_RSP_USCOREBASEINFO(struct soap *soap, const char *URL, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_RSP_USCOREBASEINFO const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "ns1:DT_FACTORY_NUMBER_RSP-RSP_BASEINFO", p->soap_type() == SOAP_TYPE__ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_RSP_USCOREBASEINFO ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap))
|
|
return soap_closesock(soap);
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_PATCH__ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_RSP_USCOREBASEINFO(struct soap *soap, const char *URL, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_RSP_USCOREBASEINFO const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "ns1:DT_FACTORY_NUMBER_RSP-RSP_BASEINFO", p->soap_type() == SOAP_TYPE__ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_RSP_USCOREBASEINFO ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap))
|
|
return soap_closesock(soap);
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_POST_send__ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_RSP_USCOREBASEINFO(struct soap *soap, const char *URL, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_RSP_USCOREBASEINFO const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "ns1:DT_FACTORY_NUMBER_RSP-RSP_BASEINFO", p->soap_type() == SOAP_TYPE__ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_RSP_USCOREBASEINFO ? "" : NULL) || soap_end_send(soap))
|
|
return soap_closesock(soap);
|
|
return SOAP_OK;
|
|
}
|
|
SOAP_FMAC3 _ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_RSP_USCOREBASEINFO * SOAP_FMAC4 soap_get__ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_RSP_USCOREBASEINFO(struct soap*, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_RSP_USCOREBASEINFO *, const char*, const char*);
|
|
|
|
inline int soap_read__ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_RSP_USCOREBASEINFO(struct soap *soap, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_RSP_USCOREBASEINFO *p)
|
|
{
|
|
if (p)
|
|
{ p->soap_default(soap);
|
|
if (soap_begin_recv(soap) || ::soap_get__ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_RSP_USCOREBASEINFO(soap, p, NULL, NULL) == NULL || soap_end_recv(soap))
|
|
return soap->error;
|
|
}
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_GET__ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_RSP_USCOREBASEINFO(struct soap *soap, const char *URL, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_RSP_USCOREBASEINFO *p)
|
|
{
|
|
if (soap_GET(soap, URL, NULL) || ::soap_read__ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_RSP_USCOREBASEINFO(soap, p))
|
|
return soap_closesock(soap);
|
|
return soap_closesock(soap);
|
|
}
|
|
|
|
inline int soap_POST_recv__ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_RSP_USCOREBASEINFO(struct soap *soap, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_RSP_USCOREBASEINFO *p)
|
|
{
|
|
if (::soap_read__ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_RSP_USCOREBASEINFO(soap, p))
|
|
return soap_closesock(soap);
|
|
return soap_closesock(soap);
|
|
}
|
|
#endif
|
|
|
|
#ifndef SOAP_TYPE_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_DEFINED
|
|
#define SOAP_TYPE_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_DEFINED
|
|
SOAP_FMAC3 int SOAP_FMAC4 soap_out_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ(struct soap*, const char*, int, const ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ *, const char*);
|
|
SOAP_FMAC3 ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ * SOAP_FMAC4 soap_in_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ(struct soap*, const char*, ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ *, const char*);
|
|
SOAP_FMAC1 ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ * SOAP_FMAC2 soap_instantiate_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ(struct soap*, int, const char*, const char*, size_t*);
|
|
|
|
inline ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ * soap_new_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ(struct soap *soap, int n = -1)
|
|
{
|
|
return soap_instantiate_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ(soap, n, NULL, NULL, NULL);
|
|
}
|
|
|
|
inline ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ * soap_new_req_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ(
|
|
struct soap *soap)
|
|
{
|
|
ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ *_p = ::soap_new_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ(soap);
|
|
if (_p)
|
|
{ _p->soap_default(soap);
|
|
}
|
|
return _p;
|
|
}
|
|
|
|
inline ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ * soap_new_set_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ(
|
|
struct soap *soap,
|
|
_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_BASEINFO *BASEINFO,
|
|
_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS *ITEMS)
|
|
{
|
|
ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ *_p = ::soap_new_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ(soap);
|
|
if (_p)
|
|
{ _p->soap_default(soap);
|
|
_p->ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ::BASEINFO = BASEINFO;
|
|
_p->ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ::ITEMS = ITEMS;
|
|
}
|
|
return _p;
|
|
}
|
|
|
|
inline int soap_write_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ(struct soap *soap, ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "ns1:DT_FACTORY_NUMBER_REQ", p->soap_type() == SOAP_TYPE_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ ? "" : NULL) || soap_end_send(soap))
|
|
return soap->error;
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_PUT_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ(struct soap *soap, const char *URL, ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "ns1:DT_FACTORY_NUMBER_REQ", p->soap_type() == SOAP_TYPE_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap))
|
|
return soap_closesock(soap);
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_PATCH_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ(struct soap *soap, const char *URL, ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "ns1:DT_FACTORY_NUMBER_REQ", p->soap_type() == SOAP_TYPE_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap))
|
|
return soap_closesock(soap);
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_POST_send_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ(struct soap *soap, const char *URL, ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "ns1:DT_FACTORY_NUMBER_REQ", p->soap_type() == SOAP_TYPE_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ ? "" : NULL) || soap_end_send(soap))
|
|
return soap_closesock(soap);
|
|
return SOAP_OK;
|
|
}
|
|
SOAP_FMAC3 ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ * SOAP_FMAC4 soap_get_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ(struct soap*, ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ *, const char*, const char*);
|
|
|
|
inline int soap_read_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ(struct soap *soap, ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ *p)
|
|
{
|
|
if (p)
|
|
{ p->soap_default(soap);
|
|
if (soap_begin_recv(soap) || ::soap_get_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ(soap, p, NULL, NULL) == NULL || soap_end_recv(soap))
|
|
return soap->error;
|
|
}
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_GET_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ(struct soap *soap, const char *URL, ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ *p)
|
|
{
|
|
if (soap_GET(soap, URL, NULL) || ::soap_read_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ(soap, p))
|
|
return soap_closesock(soap);
|
|
return soap_closesock(soap);
|
|
}
|
|
|
|
inline int soap_POST_recv_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ(struct soap *soap, ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ *p)
|
|
{
|
|
if (::soap_read_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ(soap, p))
|
|
return soap_closesock(soap);
|
|
return soap_closesock(soap);
|
|
}
|
|
#endif
|
|
|
|
#ifndef SOAP_TYPE_ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_DEFINED
|
|
#define SOAP_TYPE_ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_DEFINED
|
|
SOAP_FMAC3 int SOAP_FMAC4 soap_out_ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP(struct soap*, const char*, int, const ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP *, const char*);
|
|
SOAP_FMAC3 ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP * SOAP_FMAC4 soap_in_ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP(struct soap*, const char*, ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP *, const char*);
|
|
SOAP_FMAC1 ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP * SOAP_FMAC2 soap_instantiate_ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP(struct soap*, int, const char*, const char*, size_t*);
|
|
|
|
inline ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP * soap_new_ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP(struct soap *soap, int n = -1)
|
|
{
|
|
return soap_instantiate_ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP(soap, n, NULL, NULL, NULL);
|
|
}
|
|
|
|
inline ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP * soap_new_req_ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP(
|
|
struct soap *soap,
|
|
int __sizeZTABLE_USCORERETURN,
|
|
_ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_ZTABLE_USCORERETURN *ZTABLE_USCORERETURN)
|
|
{
|
|
ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP *_p = ::soap_new_ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP(soap);
|
|
if (_p)
|
|
{ _p->soap_default(soap);
|
|
_p->ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP::__sizeZTABLE_USCORERETURN = __sizeZTABLE_USCORERETURN;
|
|
_p->ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP::ZTABLE_USCORERETURN = ZTABLE_USCORERETURN;
|
|
}
|
|
return _p;
|
|
}
|
|
|
|
inline ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP * soap_new_set_ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP(
|
|
struct soap *soap,
|
|
_ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_RSP_USCOREBASEINFO *RSP_USCOREBASEINFO,
|
|
int __sizeZTABLE_USCORERETURN,
|
|
_ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_ZTABLE_USCORERETURN *ZTABLE_USCORERETURN)
|
|
{
|
|
ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP *_p = ::soap_new_ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP(soap);
|
|
if (_p)
|
|
{ _p->soap_default(soap);
|
|
_p->ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP::RSP_USCOREBASEINFO = RSP_USCOREBASEINFO;
|
|
_p->ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP::__sizeZTABLE_USCORERETURN = __sizeZTABLE_USCORERETURN;
|
|
_p->ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP::ZTABLE_USCORERETURN = ZTABLE_USCORERETURN;
|
|
}
|
|
return _p;
|
|
}
|
|
|
|
inline int soap_write_ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP(struct soap *soap, ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "ns1:DT_FACTORY_NUMBER_RSP", p->soap_type() == SOAP_TYPE_ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP ? "" : NULL) || soap_end_send(soap))
|
|
return soap->error;
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_PUT_ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP(struct soap *soap, const char *URL, ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "ns1:DT_FACTORY_NUMBER_RSP", p->soap_type() == SOAP_TYPE_ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap))
|
|
return soap_closesock(soap);
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_PATCH_ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP(struct soap *soap, const char *URL, ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "ns1:DT_FACTORY_NUMBER_RSP", p->soap_type() == SOAP_TYPE_ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap))
|
|
return soap_closesock(soap);
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_POST_send_ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP(struct soap *soap, const char *URL, ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "ns1:DT_FACTORY_NUMBER_RSP", p->soap_type() == SOAP_TYPE_ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP ? "" : NULL) || soap_end_send(soap))
|
|
return soap_closesock(soap);
|
|
return SOAP_OK;
|
|
}
|
|
SOAP_FMAC3 ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP * SOAP_FMAC4 soap_get_ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP(struct soap*, ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP *, const char*, const char*);
|
|
|
|
inline int soap_read_ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP(struct soap *soap, ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP *p)
|
|
{
|
|
if (p)
|
|
{ p->soap_default(soap);
|
|
if (soap_begin_recv(soap) || ::soap_get_ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP(soap, p, NULL, NULL) == NULL || soap_end_recv(soap))
|
|
return soap->error;
|
|
}
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_GET_ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP(struct soap *soap, const char *URL, ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP *p)
|
|
{
|
|
if (soap_GET(soap, URL, NULL) || ::soap_read_ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP(soap, p))
|
|
return soap_closesock(soap);
|
|
return soap_closesock(soap);
|
|
}
|
|
|
|
inline int soap_POST_recv_ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP(struct soap *soap, ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP *p)
|
|
{
|
|
if (::soap_read_ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP(soap, p))
|
|
return soap_closesock(soap);
|
|
return soap_closesock(soap);
|
|
}
|
|
#endif
|
|
|
|
#ifndef WITH_NOGLOBAL
|
|
|
|
#ifndef SOAP_TYPE_SOAP_ENV__Fault_DEFINED
|
|
#define SOAP_TYPE_SOAP_ENV__Fault_DEFINED
|
|
SOAP_FMAC3 void SOAP_FMAC4 soap_default_SOAP_ENV__Fault(struct soap*, struct SOAP_ENV__Fault *);
|
|
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_SOAP_ENV__Fault(struct soap*, const struct SOAP_ENV__Fault *);
|
|
SOAP_FMAC3 int SOAP_FMAC4 soap_out_SOAP_ENV__Fault(struct soap*, const char*, int, const struct SOAP_ENV__Fault *, const char*);
|
|
SOAP_FMAC3 struct SOAP_ENV__Fault * SOAP_FMAC4 soap_in_SOAP_ENV__Fault(struct soap*, const char*, struct SOAP_ENV__Fault *, const char*);
|
|
SOAP_FMAC1 struct SOAP_ENV__Fault * SOAP_FMAC2 soap_instantiate_SOAP_ENV__Fault(struct soap*, int, const char*, const char*, size_t*);
|
|
|
|
inline struct SOAP_ENV__Fault * soap_new_SOAP_ENV__Fault(struct soap *soap, int n = -1)
|
|
{
|
|
return soap_instantiate_SOAP_ENV__Fault(soap, n, NULL, NULL, NULL);
|
|
}
|
|
|
|
inline struct SOAP_ENV__Fault * soap_new_req_SOAP_ENV__Fault(
|
|
struct soap *soap)
|
|
{
|
|
struct SOAP_ENV__Fault *_p = ::soap_new_SOAP_ENV__Fault(soap);
|
|
if (_p)
|
|
{ ::soap_default_SOAP_ENV__Fault(soap, _p);
|
|
}
|
|
return _p;
|
|
}
|
|
|
|
inline struct SOAP_ENV__Fault * soap_new_set_SOAP_ENV__Fault(
|
|
struct soap *soap,
|
|
char *faultcode,
|
|
char *faultstring,
|
|
char *faultactor,
|
|
struct SOAP_ENV__Detail *detail,
|
|
struct SOAP_ENV__Code *SOAP_ENV__Code,
|
|
struct SOAP_ENV__Reason *SOAP_ENV__Reason,
|
|
char *SOAP_ENV__Node,
|
|
char *SOAP_ENV__Role,
|
|
struct SOAP_ENV__Detail *SOAP_ENV__Detail)
|
|
{
|
|
struct SOAP_ENV__Fault *_p = ::soap_new_SOAP_ENV__Fault(soap);
|
|
if (_p)
|
|
{ ::soap_default_SOAP_ENV__Fault(soap, _p);
|
|
_p->faultcode = faultcode;
|
|
_p->faultstring = faultstring;
|
|
_p->faultactor = faultactor;
|
|
_p->detail = detail;
|
|
_p->SOAP_ENV__Code = SOAP_ENV__Code;
|
|
_p->SOAP_ENV__Reason = SOAP_ENV__Reason;
|
|
_p->SOAP_ENV__Node = SOAP_ENV__Node;
|
|
_p->SOAP_ENV__Role = SOAP_ENV__Role;
|
|
_p->SOAP_ENV__Detail = SOAP_ENV__Detail;
|
|
}
|
|
return _p;
|
|
}
|
|
SOAP_FMAC3 int SOAP_FMAC4 soap_put_SOAP_ENV__Fault(struct soap*, const struct SOAP_ENV__Fault *, const char*, const char*);
|
|
|
|
inline int soap_write_SOAP_ENV__Fault(struct soap *soap, struct SOAP_ENV__Fault const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_begin_send(soap) || (::soap_serialize_SOAP_ENV__Fault(soap, p), 0) || ::soap_put_SOAP_ENV__Fault(soap, p, "SOAP-ENV:Fault", "") || soap_end_send(soap))
|
|
return soap->error;
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_PUT_SOAP_ENV__Fault(struct soap *soap, const char *URL, struct SOAP_ENV__Fault const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_SOAP_ENV__Fault(soap, p), 0) || ::soap_put_SOAP_ENV__Fault(soap, p, "SOAP-ENV:Fault", "") || soap_end_send(soap) || soap_recv_empty_response(soap))
|
|
return soap_closesock(soap);
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_PATCH_SOAP_ENV__Fault(struct soap *soap, const char *URL, struct SOAP_ENV__Fault const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_SOAP_ENV__Fault(soap, p), 0) || ::soap_put_SOAP_ENV__Fault(soap, p, "SOAP-ENV:Fault", "") || soap_end_send(soap) || soap_recv_empty_response(soap))
|
|
return soap_closesock(soap);
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_POST_send_SOAP_ENV__Fault(struct soap *soap, const char *URL, struct SOAP_ENV__Fault const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_SOAP_ENV__Fault(soap, p), 0) || ::soap_put_SOAP_ENV__Fault(soap, p, "SOAP-ENV:Fault", "") || soap_end_send(soap))
|
|
return soap_closesock(soap);
|
|
return SOAP_OK;
|
|
}
|
|
SOAP_FMAC3 struct SOAP_ENV__Fault * SOAP_FMAC4 soap_get_SOAP_ENV__Fault(struct soap*, struct SOAP_ENV__Fault *, const char*, const char*);
|
|
|
|
inline int soap_read_SOAP_ENV__Fault(struct soap *soap, struct SOAP_ENV__Fault *p)
|
|
{
|
|
if (p)
|
|
{ ::soap_default_SOAP_ENV__Fault(soap, p);
|
|
if (soap_begin_recv(soap) || ::soap_get_SOAP_ENV__Fault(soap, p, NULL, NULL) == NULL || soap_end_recv(soap))
|
|
return soap->error;
|
|
}
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_GET_SOAP_ENV__Fault(struct soap *soap, const char *URL, struct SOAP_ENV__Fault *p)
|
|
{
|
|
if (soap_GET(soap, URL, NULL) || ::soap_read_SOAP_ENV__Fault(soap, p))
|
|
return soap_closesock(soap);
|
|
return soap_closesock(soap);
|
|
}
|
|
|
|
inline int soap_POST_recv_SOAP_ENV__Fault(struct soap *soap, struct SOAP_ENV__Fault *p)
|
|
{
|
|
if (::soap_read_SOAP_ENV__Fault(soap, p))
|
|
return soap_closesock(soap);
|
|
return soap_closesock(soap);
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#ifndef WITH_NOGLOBAL
|
|
|
|
#ifndef SOAP_TYPE_SOAP_ENV__Reason_DEFINED
|
|
#define SOAP_TYPE_SOAP_ENV__Reason_DEFINED
|
|
SOAP_FMAC3 void SOAP_FMAC4 soap_default_SOAP_ENV__Reason(struct soap*, struct SOAP_ENV__Reason *);
|
|
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_SOAP_ENV__Reason(struct soap*, const struct SOAP_ENV__Reason *);
|
|
SOAP_FMAC3 int SOAP_FMAC4 soap_out_SOAP_ENV__Reason(struct soap*, const char*, int, const struct SOAP_ENV__Reason *, const char*);
|
|
SOAP_FMAC3 struct SOAP_ENV__Reason * SOAP_FMAC4 soap_in_SOAP_ENV__Reason(struct soap*, const char*, struct SOAP_ENV__Reason *, const char*);
|
|
SOAP_FMAC1 struct SOAP_ENV__Reason * SOAP_FMAC2 soap_instantiate_SOAP_ENV__Reason(struct soap*, int, const char*, const char*, size_t*);
|
|
|
|
inline struct SOAP_ENV__Reason * soap_new_SOAP_ENV__Reason(struct soap *soap, int n = -1)
|
|
{
|
|
return soap_instantiate_SOAP_ENV__Reason(soap, n, NULL, NULL, NULL);
|
|
}
|
|
|
|
inline struct SOAP_ENV__Reason * soap_new_req_SOAP_ENV__Reason(
|
|
struct soap *soap)
|
|
{
|
|
struct SOAP_ENV__Reason *_p = ::soap_new_SOAP_ENV__Reason(soap);
|
|
if (_p)
|
|
{ ::soap_default_SOAP_ENV__Reason(soap, _p);
|
|
}
|
|
return _p;
|
|
}
|
|
|
|
inline struct SOAP_ENV__Reason * soap_new_set_SOAP_ENV__Reason(
|
|
struct soap *soap,
|
|
char *SOAP_ENV__Text)
|
|
{
|
|
struct SOAP_ENV__Reason *_p = ::soap_new_SOAP_ENV__Reason(soap);
|
|
if (_p)
|
|
{ ::soap_default_SOAP_ENV__Reason(soap, _p);
|
|
_p->SOAP_ENV__Text = SOAP_ENV__Text;
|
|
}
|
|
return _p;
|
|
}
|
|
SOAP_FMAC3 int SOAP_FMAC4 soap_put_SOAP_ENV__Reason(struct soap*, const struct SOAP_ENV__Reason *, const char*, const char*);
|
|
|
|
inline int soap_write_SOAP_ENV__Reason(struct soap *soap, struct SOAP_ENV__Reason const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_begin_send(soap) || (::soap_serialize_SOAP_ENV__Reason(soap, p), 0) || ::soap_put_SOAP_ENV__Reason(soap, p, "SOAP-ENV:Reason", "") || soap_end_send(soap))
|
|
return soap->error;
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_PUT_SOAP_ENV__Reason(struct soap *soap, const char *URL, struct SOAP_ENV__Reason const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_SOAP_ENV__Reason(soap, p), 0) || ::soap_put_SOAP_ENV__Reason(soap, p, "SOAP-ENV:Reason", "") || soap_end_send(soap) || soap_recv_empty_response(soap))
|
|
return soap_closesock(soap);
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_PATCH_SOAP_ENV__Reason(struct soap *soap, const char *URL, struct SOAP_ENV__Reason const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_SOAP_ENV__Reason(soap, p), 0) || ::soap_put_SOAP_ENV__Reason(soap, p, "SOAP-ENV:Reason", "") || soap_end_send(soap) || soap_recv_empty_response(soap))
|
|
return soap_closesock(soap);
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_POST_send_SOAP_ENV__Reason(struct soap *soap, const char *URL, struct SOAP_ENV__Reason const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_SOAP_ENV__Reason(soap, p), 0) || ::soap_put_SOAP_ENV__Reason(soap, p, "SOAP-ENV:Reason", "") || soap_end_send(soap))
|
|
return soap_closesock(soap);
|
|
return SOAP_OK;
|
|
}
|
|
SOAP_FMAC3 struct SOAP_ENV__Reason * SOAP_FMAC4 soap_get_SOAP_ENV__Reason(struct soap*, struct SOAP_ENV__Reason *, const char*, const char*);
|
|
|
|
inline int soap_read_SOAP_ENV__Reason(struct soap *soap, struct SOAP_ENV__Reason *p)
|
|
{
|
|
if (p)
|
|
{ ::soap_default_SOAP_ENV__Reason(soap, p);
|
|
if (soap_begin_recv(soap) || ::soap_get_SOAP_ENV__Reason(soap, p, NULL, NULL) == NULL || soap_end_recv(soap))
|
|
return soap->error;
|
|
}
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_GET_SOAP_ENV__Reason(struct soap *soap, const char *URL, struct SOAP_ENV__Reason *p)
|
|
{
|
|
if (soap_GET(soap, URL, NULL) || ::soap_read_SOAP_ENV__Reason(soap, p))
|
|
return soap_closesock(soap);
|
|
return soap_closesock(soap);
|
|
}
|
|
|
|
inline int soap_POST_recv_SOAP_ENV__Reason(struct soap *soap, struct SOAP_ENV__Reason *p)
|
|
{
|
|
if (::soap_read_SOAP_ENV__Reason(soap, p))
|
|
return soap_closesock(soap);
|
|
return soap_closesock(soap);
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#ifndef WITH_NOGLOBAL
|
|
|
|
#ifndef SOAP_TYPE_SOAP_ENV__Detail_DEFINED
|
|
#define SOAP_TYPE_SOAP_ENV__Detail_DEFINED
|
|
SOAP_FMAC3 void SOAP_FMAC4 soap_default_SOAP_ENV__Detail(struct soap*, struct SOAP_ENV__Detail *);
|
|
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_SOAP_ENV__Detail(struct soap*, const struct SOAP_ENV__Detail *);
|
|
SOAP_FMAC3 int SOAP_FMAC4 soap_out_SOAP_ENV__Detail(struct soap*, const char*, int, const struct SOAP_ENV__Detail *, const char*);
|
|
SOAP_FMAC3 struct SOAP_ENV__Detail * SOAP_FMAC4 soap_in_SOAP_ENV__Detail(struct soap*, const char*, struct SOAP_ENV__Detail *, const char*);
|
|
SOAP_FMAC1 struct SOAP_ENV__Detail * SOAP_FMAC2 soap_instantiate_SOAP_ENV__Detail(struct soap*, int, const char*, const char*, size_t*);
|
|
|
|
inline struct SOAP_ENV__Detail * soap_new_SOAP_ENV__Detail(struct soap *soap, int n = -1)
|
|
{
|
|
return soap_instantiate_SOAP_ENV__Detail(soap, n, NULL, NULL, NULL);
|
|
}
|
|
|
|
inline struct SOAP_ENV__Detail * soap_new_req_SOAP_ENV__Detail(
|
|
struct soap *soap,
|
|
int __type,
|
|
void *fault)
|
|
{
|
|
struct SOAP_ENV__Detail *_p = ::soap_new_SOAP_ENV__Detail(soap);
|
|
if (_p)
|
|
{ ::soap_default_SOAP_ENV__Detail(soap, _p);
|
|
_p->__type = __type;
|
|
_p->fault = fault;
|
|
}
|
|
return _p;
|
|
}
|
|
|
|
inline struct SOAP_ENV__Detail * soap_new_set_SOAP_ENV__Detail(
|
|
struct soap *soap,
|
|
char *__any,
|
|
int __type,
|
|
void *fault)
|
|
{
|
|
struct SOAP_ENV__Detail *_p = ::soap_new_SOAP_ENV__Detail(soap);
|
|
if (_p)
|
|
{ ::soap_default_SOAP_ENV__Detail(soap, _p);
|
|
_p->__any = __any;
|
|
_p->__type = __type;
|
|
_p->fault = fault;
|
|
}
|
|
return _p;
|
|
}
|
|
SOAP_FMAC3 int SOAP_FMAC4 soap_put_SOAP_ENV__Detail(struct soap*, const struct SOAP_ENV__Detail *, const char*, const char*);
|
|
|
|
inline int soap_write_SOAP_ENV__Detail(struct soap *soap, struct SOAP_ENV__Detail const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_begin_send(soap) || (::soap_serialize_SOAP_ENV__Detail(soap, p), 0) || ::soap_put_SOAP_ENV__Detail(soap, p, "SOAP-ENV:Detail", "") || soap_end_send(soap))
|
|
return soap->error;
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_PUT_SOAP_ENV__Detail(struct soap *soap, const char *URL, struct SOAP_ENV__Detail const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_SOAP_ENV__Detail(soap, p), 0) || ::soap_put_SOAP_ENV__Detail(soap, p, "SOAP-ENV:Detail", "") || soap_end_send(soap) || soap_recv_empty_response(soap))
|
|
return soap_closesock(soap);
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_PATCH_SOAP_ENV__Detail(struct soap *soap, const char *URL, struct SOAP_ENV__Detail const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_SOAP_ENV__Detail(soap, p), 0) || ::soap_put_SOAP_ENV__Detail(soap, p, "SOAP-ENV:Detail", "") || soap_end_send(soap) || soap_recv_empty_response(soap))
|
|
return soap_closesock(soap);
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_POST_send_SOAP_ENV__Detail(struct soap *soap, const char *URL, struct SOAP_ENV__Detail const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_SOAP_ENV__Detail(soap, p), 0) || ::soap_put_SOAP_ENV__Detail(soap, p, "SOAP-ENV:Detail", "") || soap_end_send(soap))
|
|
return soap_closesock(soap);
|
|
return SOAP_OK;
|
|
}
|
|
SOAP_FMAC3 struct SOAP_ENV__Detail * SOAP_FMAC4 soap_get_SOAP_ENV__Detail(struct soap*, struct SOAP_ENV__Detail *, const char*, const char*);
|
|
|
|
inline int soap_read_SOAP_ENV__Detail(struct soap *soap, struct SOAP_ENV__Detail *p)
|
|
{
|
|
if (p)
|
|
{ ::soap_default_SOAP_ENV__Detail(soap, p);
|
|
if (soap_begin_recv(soap) || ::soap_get_SOAP_ENV__Detail(soap, p, NULL, NULL) == NULL || soap_end_recv(soap))
|
|
return soap->error;
|
|
}
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_GET_SOAP_ENV__Detail(struct soap *soap, const char *URL, struct SOAP_ENV__Detail *p)
|
|
{
|
|
if (soap_GET(soap, URL, NULL) || ::soap_read_SOAP_ENV__Detail(soap, p))
|
|
return soap_closesock(soap);
|
|
return soap_closesock(soap);
|
|
}
|
|
|
|
inline int soap_POST_recv_SOAP_ENV__Detail(struct soap *soap, struct SOAP_ENV__Detail *p)
|
|
{
|
|
if (::soap_read_SOAP_ENV__Detail(soap, p))
|
|
return soap_closesock(soap);
|
|
return soap_closesock(soap);
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#ifndef WITH_NOGLOBAL
|
|
|
|
#ifndef SOAP_TYPE_SOAP_ENV__Code_DEFINED
|
|
#define SOAP_TYPE_SOAP_ENV__Code_DEFINED
|
|
SOAP_FMAC3 void SOAP_FMAC4 soap_default_SOAP_ENV__Code(struct soap*, struct SOAP_ENV__Code *);
|
|
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_SOAP_ENV__Code(struct soap*, const struct SOAP_ENV__Code *);
|
|
SOAP_FMAC3 int SOAP_FMAC4 soap_out_SOAP_ENV__Code(struct soap*, const char*, int, const struct SOAP_ENV__Code *, const char*);
|
|
SOAP_FMAC3 struct SOAP_ENV__Code * SOAP_FMAC4 soap_in_SOAP_ENV__Code(struct soap*, const char*, struct SOAP_ENV__Code *, const char*);
|
|
SOAP_FMAC1 struct SOAP_ENV__Code * SOAP_FMAC2 soap_instantiate_SOAP_ENV__Code(struct soap*, int, const char*, const char*, size_t*);
|
|
|
|
inline struct SOAP_ENV__Code * soap_new_SOAP_ENV__Code(struct soap *soap, int n = -1)
|
|
{
|
|
return soap_instantiate_SOAP_ENV__Code(soap, n, NULL, NULL, NULL);
|
|
}
|
|
|
|
inline struct SOAP_ENV__Code * soap_new_req_SOAP_ENV__Code(
|
|
struct soap *soap)
|
|
{
|
|
struct SOAP_ENV__Code *_p = ::soap_new_SOAP_ENV__Code(soap);
|
|
if (_p)
|
|
{ ::soap_default_SOAP_ENV__Code(soap, _p);
|
|
}
|
|
return _p;
|
|
}
|
|
|
|
inline struct SOAP_ENV__Code * soap_new_set_SOAP_ENV__Code(
|
|
struct soap *soap,
|
|
char *SOAP_ENV__Value,
|
|
struct SOAP_ENV__Code *SOAP_ENV__Subcode)
|
|
{
|
|
struct SOAP_ENV__Code *_p = ::soap_new_SOAP_ENV__Code(soap);
|
|
if (_p)
|
|
{ ::soap_default_SOAP_ENV__Code(soap, _p);
|
|
_p->SOAP_ENV__Value = SOAP_ENV__Value;
|
|
_p->SOAP_ENV__Subcode = SOAP_ENV__Subcode;
|
|
}
|
|
return _p;
|
|
}
|
|
SOAP_FMAC3 int SOAP_FMAC4 soap_put_SOAP_ENV__Code(struct soap*, const struct SOAP_ENV__Code *, const char*, const char*);
|
|
|
|
inline int soap_write_SOAP_ENV__Code(struct soap *soap, struct SOAP_ENV__Code const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_begin_send(soap) || (::soap_serialize_SOAP_ENV__Code(soap, p), 0) || ::soap_put_SOAP_ENV__Code(soap, p, "SOAP-ENV:Code", "") || soap_end_send(soap))
|
|
return soap->error;
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_PUT_SOAP_ENV__Code(struct soap *soap, const char *URL, struct SOAP_ENV__Code const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_SOAP_ENV__Code(soap, p), 0) || ::soap_put_SOAP_ENV__Code(soap, p, "SOAP-ENV:Code", "") || soap_end_send(soap) || soap_recv_empty_response(soap))
|
|
return soap_closesock(soap);
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_PATCH_SOAP_ENV__Code(struct soap *soap, const char *URL, struct SOAP_ENV__Code const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_SOAP_ENV__Code(soap, p), 0) || ::soap_put_SOAP_ENV__Code(soap, p, "SOAP-ENV:Code", "") || soap_end_send(soap) || soap_recv_empty_response(soap))
|
|
return soap_closesock(soap);
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_POST_send_SOAP_ENV__Code(struct soap *soap, const char *URL, struct SOAP_ENV__Code const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_SOAP_ENV__Code(soap, p), 0) || ::soap_put_SOAP_ENV__Code(soap, p, "SOAP-ENV:Code", "") || soap_end_send(soap))
|
|
return soap_closesock(soap);
|
|
return SOAP_OK;
|
|
}
|
|
SOAP_FMAC3 struct SOAP_ENV__Code * SOAP_FMAC4 soap_get_SOAP_ENV__Code(struct soap*, struct SOAP_ENV__Code *, const char*, const char*);
|
|
|
|
inline int soap_read_SOAP_ENV__Code(struct soap *soap, struct SOAP_ENV__Code *p)
|
|
{
|
|
if (p)
|
|
{ ::soap_default_SOAP_ENV__Code(soap, p);
|
|
if (soap_begin_recv(soap) || ::soap_get_SOAP_ENV__Code(soap, p, NULL, NULL) == NULL || soap_end_recv(soap))
|
|
return soap->error;
|
|
}
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_GET_SOAP_ENV__Code(struct soap *soap, const char *URL, struct SOAP_ENV__Code *p)
|
|
{
|
|
if (soap_GET(soap, URL, NULL) || ::soap_read_SOAP_ENV__Code(soap, p))
|
|
return soap_closesock(soap);
|
|
return soap_closesock(soap);
|
|
}
|
|
|
|
inline int soap_POST_recv_SOAP_ENV__Code(struct soap *soap, struct SOAP_ENV__Code *p)
|
|
{
|
|
if (::soap_read_SOAP_ENV__Code(soap, p))
|
|
return soap_closesock(soap);
|
|
return soap_closesock(soap);
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#ifndef WITH_NOGLOBAL
|
|
|
|
#ifndef SOAP_TYPE_SOAP_ENV__Header_DEFINED
|
|
#define SOAP_TYPE_SOAP_ENV__Header_DEFINED
|
|
SOAP_FMAC3 void SOAP_FMAC4 soap_default_SOAP_ENV__Header(struct soap*, struct SOAP_ENV__Header *);
|
|
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_SOAP_ENV__Header(struct soap*, const struct SOAP_ENV__Header *);
|
|
SOAP_FMAC3 int SOAP_FMAC4 soap_out_SOAP_ENV__Header(struct soap*, const char*, int, const struct SOAP_ENV__Header *, const char*);
|
|
SOAP_FMAC3 struct SOAP_ENV__Header * SOAP_FMAC4 soap_in_SOAP_ENV__Header(struct soap*, const char*, struct SOAP_ENV__Header *, const char*);
|
|
SOAP_FMAC1 struct SOAP_ENV__Header * SOAP_FMAC2 soap_instantiate_SOAP_ENV__Header(struct soap*, int, const char*, const char*, size_t*);
|
|
|
|
inline struct SOAP_ENV__Header * soap_new_SOAP_ENV__Header(struct soap *soap, int n = -1)
|
|
{
|
|
return soap_instantiate_SOAP_ENV__Header(soap, n, NULL, NULL, NULL);
|
|
}
|
|
|
|
inline struct SOAP_ENV__Header * soap_new_req_SOAP_ENV__Header(
|
|
struct soap *soap)
|
|
{
|
|
struct SOAP_ENV__Header *_p = ::soap_new_SOAP_ENV__Header(soap);
|
|
if (_p)
|
|
{ ::soap_default_SOAP_ENV__Header(soap, _p);
|
|
}
|
|
return _p;
|
|
}
|
|
|
|
inline struct SOAP_ENV__Header * soap_new_set_SOAP_ENV__Header(
|
|
struct soap *soap)
|
|
{
|
|
struct SOAP_ENV__Header *_p = ::soap_new_SOAP_ENV__Header(soap);
|
|
if (_p)
|
|
{ ::soap_default_SOAP_ENV__Header(soap, _p);
|
|
}
|
|
return _p;
|
|
}
|
|
SOAP_FMAC3 int SOAP_FMAC4 soap_put_SOAP_ENV__Header(struct soap*, const struct SOAP_ENV__Header *, const char*, const char*);
|
|
|
|
inline int soap_write_SOAP_ENV__Header(struct soap *soap, struct SOAP_ENV__Header const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_begin_send(soap) || (::soap_serialize_SOAP_ENV__Header(soap, p), 0) || ::soap_put_SOAP_ENV__Header(soap, p, "SOAP-ENV:Header", "") || soap_end_send(soap))
|
|
return soap->error;
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_PUT_SOAP_ENV__Header(struct soap *soap, const char *URL, struct SOAP_ENV__Header const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_SOAP_ENV__Header(soap, p), 0) || ::soap_put_SOAP_ENV__Header(soap, p, "SOAP-ENV:Header", "") || soap_end_send(soap) || soap_recv_empty_response(soap))
|
|
return soap_closesock(soap);
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_PATCH_SOAP_ENV__Header(struct soap *soap, const char *URL, struct SOAP_ENV__Header const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_SOAP_ENV__Header(soap, p), 0) || ::soap_put_SOAP_ENV__Header(soap, p, "SOAP-ENV:Header", "") || soap_end_send(soap) || soap_recv_empty_response(soap))
|
|
return soap_closesock(soap);
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_POST_send_SOAP_ENV__Header(struct soap *soap, const char *URL, struct SOAP_ENV__Header const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize_SOAP_ENV__Header(soap, p), 0) || ::soap_put_SOAP_ENV__Header(soap, p, "SOAP-ENV:Header", "") || soap_end_send(soap))
|
|
return soap_closesock(soap);
|
|
return SOAP_OK;
|
|
}
|
|
SOAP_FMAC3 struct SOAP_ENV__Header * SOAP_FMAC4 soap_get_SOAP_ENV__Header(struct soap*, struct SOAP_ENV__Header *, const char*, const char*);
|
|
|
|
inline int soap_read_SOAP_ENV__Header(struct soap *soap, struct SOAP_ENV__Header *p)
|
|
{
|
|
if (p)
|
|
{ ::soap_default_SOAP_ENV__Header(soap, p);
|
|
if (soap_begin_recv(soap) || ::soap_get_SOAP_ENV__Header(soap, p, NULL, NULL) == NULL || soap_end_recv(soap))
|
|
return soap->error;
|
|
}
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_GET_SOAP_ENV__Header(struct soap *soap, const char *URL, struct SOAP_ENV__Header *p)
|
|
{
|
|
if (soap_GET(soap, URL, NULL) || ::soap_read_SOAP_ENV__Header(soap, p))
|
|
return soap_closesock(soap);
|
|
return soap_closesock(soap);
|
|
}
|
|
|
|
inline int soap_POST_recv_SOAP_ENV__Header(struct soap *soap, struct SOAP_ENV__Header *p)
|
|
{
|
|
if (::soap_read_SOAP_ENV__Header(soap, p))
|
|
return soap_closesock(soap);
|
|
return soap_closesock(soap);
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#ifndef SOAP_TYPE___ns1__SI_USCOREFACTORY_USCORENUMBER_USCOREPLM_USCOREOUT_USCORESYN_DEFINED
|
|
#define SOAP_TYPE___ns1__SI_USCOREFACTORY_USCORENUMBER_USCOREPLM_USCOREOUT_USCORESYN_DEFINED
|
|
SOAP_FMAC3 void SOAP_FMAC4 soap_default___ns1__SI_USCOREFACTORY_USCORENUMBER_USCOREPLM_USCOREOUT_USCORESYN(struct soap*, struct __ns1__SI_USCOREFACTORY_USCORENUMBER_USCOREPLM_USCOREOUT_USCORESYN *);
|
|
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize___ns1__SI_USCOREFACTORY_USCORENUMBER_USCOREPLM_USCOREOUT_USCORESYN(struct soap*, const struct __ns1__SI_USCOREFACTORY_USCORENUMBER_USCOREPLM_USCOREOUT_USCORESYN *);
|
|
SOAP_FMAC3 int SOAP_FMAC4 soap_out___ns1__SI_USCOREFACTORY_USCORENUMBER_USCOREPLM_USCOREOUT_USCORESYN(struct soap*, const char*, int, const struct __ns1__SI_USCOREFACTORY_USCORENUMBER_USCOREPLM_USCOREOUT_USCORESYN *, const char*);
|
|
SOAP_FMAC3 struct __ns1__SI_USCOREFACTORY_USCORENUMBER_USCOREPLM_USCOREOUT_USCORESYN * SOAP_FMAC4 soap_in___ns1__SI_USCOREFACTORY_USCORENUMBER_USCOREPLM_USCOREOUT_USCORESYN(struct soap*, const char*, struct __ns1__SI_USCOREFACTORY_USCORENUMBER_USCOREPLM_USCOREOUT_USCORESYN *, const char*);
|
|
SOAP_FMAC1 struct __ns1__SI_USCOREFACTORY_USCORENUMBER_USCOREPLM_USCOREOUT_USCORESYN * SOAP_FMAC2 soap_instantiate___ns1__SI_USCOREFACTORY_USCORENUMBER_USCOREPLM_USCOREOUT_USCORESYN(struct soap*, int, const char*, const char*, size_t*);
|
|
|
|
inline struct __ns1__SI_USCOREFACTORY_USCORENUMBER_USCOREPLM_USCOREOUT_USCORESYN * soap_new___ns1__SI_USCOREFACTORY_USCORENUMBER_USCOREPLM_USCOREOUT_USCORESYN(struct soap *soap, int n = -1)
|
|
{
|
|
return soap_instantiate___ns1__SI_USCOREFACTORY_USCORENUMBER_USCOREPLM_USCOREOUT_USCORESYN(soap, n, NULL, NULL, NULL);
|
|
}
|
|
|
|
inline struct __ns1__SI_USCOREFACTORY_USCORENUMBER_USCOREPLM_USCOREOUT_USCORESYN * soap_new_req___ns1__SI_USCOREFACTORY_USCORENUMBER_USCOREPLM_USCOREOUT_USCORESYN(
|
|
struct soap *soap)
|
|
{
|
|
struct __ns1__SI_USCOREFACTORY_USCORENUMBER_USCOREPLM_USCOREOUT_USCORESYN *_p = ::soap_new___ns1__SI_USCOREFACTORY_USCORENUMBER_USCOREPLM_USCOREOUT_USCORESYN(soap);
|
|
if (_p)
|
|
{ ::soap_default___ns1__SI_USCOREFACTORY_USCORENUMBER_USCOREPLM_USCOREOUT_USCORESYN(soap, _p);
|
|
}
|
|
return _p;
|
|
}
|
|
|
|
inline struct __ns1__SI_USCOREFACTORY_USCORENUMBER_USCOREPLM_USCOREOUT_USCORESYN * soap_new_set___ns1__SI_USCOREFACTORY_USCORENUMBER_USCOREPLM_USCOREOUT_USCORESYN(
|
|
struct soap *soap,
|
|
ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ *ns1__MT_USCOREFACTORY_USCORENUMBER_USCOREREQ)
|
|
{
|
|
struct __ns1__SI_USCOREFACTORY_USCORENUMBER_USCOREPLM_USCOREOUT_USCORESYN *_p = ::soap_new___ns1__SI_USCOREFACTORY_USCORENUMBER_USCOREPLM_USCOREOUT_USCORESYN(soap);
|
|
if (_p)
|
|
{ ::soap_default___ns1__SI_USCOREFACTORY_USCORENUMBER_USCOREPLM_USCOREOUT_USCORESYN(soap, _p);
|
|
_p->ns1__MT_USCOREFACTORY_USCORENUMBER_USCOREREQ = ns1__MT_USCOREFACTORY_USCORENUMBER_USCOREREQ;
|
|
}
|
|
return _p;
|
|
}
|
|
SOAP_FMAC3 int SOAP_FMAC4 soap_put___ns1__SI_USCOREFACTORY_USCORENUMBER_USCOREPLM_USCOREOUT_USCORESYN(struct soap*, const struct __ns1__SI_USCOREFACTORY_USCORENUMBER_USCOREPLM_USCOREOUT_USCORESYN *, const char*, const char*);
|
|
|
|
inline int soap_write___ns1__SI_USCOREFACTORY_USCORENUMBER_USCOREPLM_USCOREOUT_USCORESYN(struct soap *soap, struct __ns1__SI_USCOREFACTORY_USCORENUMBER_USCOREPLM_USCOREOUT_USCORESYN const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_begin_send(soap) || (::soap_serialize___ns1__SI_USCOREFACTORY_USCORENUMBER_USCOREPLM_USCOREOUT_USCORESYN(soap, p), 0) || ::soap_put___ns1__SI_USCOREFACTORY_USCORENUMBER_USCOREPLM_USCOREOUT_USCORESYN(soap, p, "-ns1:SI_FACTORY_NUMBER_PLM_OUT_SYN", "") || soap_end_send(soap))
|
|
return soap->error;
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_PUT___ns1__SI_USCOREFACTORY_USCORENUMBER_USCOREPLM_USCOREOUT_USCORESYN(struct soap *soap, const char *URL, struct __ns1__SI_USCOREFACTORY_USCORENUMBER_USCOREPLM_USCOREOUT_USCORESYN const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___ns1__SI_USCOREFACTORY_USCORENUMBER_USCOREPLM_USCOREOUT_USCORESYN(soap, p), 0) || ::soap_put___ns1__SI_USCOREFACTORY_USCORENUMBER_USCOREPLM_USCOREOUT_USCORESYN(soap, p, "-ns1:SI_FACTORY_NUMBER_PLM_OUT_SYN", "") || soap_end_send(soap) || soap_recv_empty_response(soap))
|
|
return soap_closesock(soap);
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_PATCH___ns1__SI_USCOREFACTORY_USCORENUMBER_USCOREPLM_USCOREOUT_USCORESYN(struct soap *soap, const char *URL, struct __ns1__SI_USCOREFACTORY_USCORENUMBER_USCOREPLM_USCOREOUT_USCORESYN const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___ns1__SI_USCOREFACTORY_USCORENUMBER_USCOREPLM_USCOREOUT_USCORESYN(soap, p), 0) || ::soap_put___ns1__SI_USCOREFACTORY_USCORENUMBER_USCOREPLM_USCOREOUT_USCORESYN(soap, p, "-ns1:SI_FACTORY_NUMBER_PLM_OUT_SYN", "") || soap_end_send(soap) || soap_recv_empty_response(soap))
|
|
return soap_closesock(soap);
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_POST_send___ns1__SI_USCOREFACTORY_USCORENUMBER_USCOREPLM_USCOREOUT_USCORESYN(struct soap *soap, const char *URL, struct __ns1__SI_USCOREFACTORY_USCORENUMBER_USCOREPLM_USCOREOUT_USCORESYN const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (::soap_serialize___ns1__SI_USCOREFACTORY_USCORENUMBER_USCOREPLM_USCOREOUT_USCORESYN(soap, p), 0) || ::soap_put___ns1__SI_USCOREFACTORY_USCORENUMBER_USCOREPLM_USCOREOUT_USCORESYN(soap, p, "-ns1:SI_FACTORY_NUMBER_PLM_OUT_SYN", "") || soap_end_send(soap))
|
|
return soap_closesock(soap);
|
|
return SOAP_OK;
|
|
}
|
|
SOAP_FMAC3 struct __ns1__SI_USCOREFACTORY_USCORENUMBER_USCOREPLM_USCOREOUT_USCORESYN * SOAP_FMAC4 soap_get___ns1__SI_USCOREFACTORY_USCORENUMBER_USCOREPLM_USCOREOUT_USCORESYN(struct soap*, struct __ns1__SI_USCOREFACTORY_USCORENUMBER_USCOREPLM_USCOREOUT_USCORESYN *, const char*, const char*);
|
|
|
|
inline int soap_read___ns1__SI_USCOREFACTORY_USCORENUMBER_USCOREPLM_USCOREOUT_USCORESYN(struct soap *soap, struct __ns1__SI_USCOREFACTORY_USCORENUMBER_USCOREPLM_USCOREOUT_USCORESYN *p)
|
|
{
|
|
if (p)
|
|
{ ::soap_default___ns1__SI_USCOREFACTORY_USCORENUMBER_USCOREPLM_USCOREOUT_USCORESYN(soap, p);
|
|
if (soap_begin_recv(soap) || ::soap_get___ns1__SI_USCOREFACTORY_USCORENUMBER_USCOREPLM_USCOREOUT_USCORESYN(soap, p, NULL, NULL) == NULL || soap_end_recv(soap))
|
|
return soap->error;
|
|
}
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_GET___ns1__SI_USCOREFACTORY_USCORENUMBER_USCOREPLM_USCOREOUT_USCORESYN(struct soap *soap, const char *URL, struct __ns1__SI_USCOREFACTORY_USCORENUMBER_USCOREPLM_USCOREOUT_USCORESYN *p)
|
|
{
|
|
if (soap_GET(soap, URL, NULL) || ::soap_read___ns1__SI_USCOREFACTORY_USCORENUMBER_USCOREPLM_USCOREOUT_USCORESYN(soap, p))
|
|
return soap_closesock(soap);
|
|
return soap_closesock(soap);
|
|
}
|
|
|
|
inline int soap_POST_recv___ns1__SI_USCOREFACTORY_USCORENUMBER_USCOREPLM_USCOREOUT_USCORESYN(struct soap *soap, struct __ns1__SI_USCOREFACTORY_USCORENUMBER_USCOREPLM_USCOREOUT_USCORESYN *p)
|
|
{
|
|
if (::soap_read___ns1__SI_USCOREFACTORY_USCORENUMBER_USCOREPLM_USCOREOUT_USCORESYN(soap, p))
|
|
return soap_closesock(soap);
|
|
return soap_closesock(soap);
|
|
}
|
|
#endif
|
|
|
|
#ifndef WITH_NOGLOBAL
|
|
|
|
#ifndef SOAP_TYPE_PointerToSOAP_ENV__Reason_DEFINED
|
|
#define SOAP_TYPE_PointerToSOAP_ENV__Reason_DEFINED
|
|
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToSOAP_ENV__Reason(struct soap*, struct SOAP_ENV__Reason *const*);
|
|
SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToSOAP_ENV__Reason(struct soap*, const char *, int, struct SOAP_ENV__Reason *const*, const char *);
|
|
SOAP_FMAC3 struct SOAP_ENV__Reason ** SOAP_FMAC4 soap_in_PointerToSOAP_ENV__Reason(struct soap*, const char*, struct SOAP_ENV__Reason **, const char*);
|
|
SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToSOAP_ENV__Reason(struct soap*, struct SOAP_ENV__Reason *const*, const char*, const char*);
|
|
SOAP_FMAC3 struct SOAP_ENV__Reason ** SOAP_FMAC4 soap_get_PointerToSOAP_ENV__Reason(struct soap*, struct SOAP_ENV__Reason **, const char*, const char*);
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#ifndef WITH_NOGLOBAL
|
|
|
|
#ifndef SOAP_TYPE_PointerToSOAP_ENV__Detail_DEFINED
|
|
#define SOAP_TYPE_PointerToSOAP_ENV__Detail_DEFINED
|
|
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToSOAP_ENV__Detail(struct soap*, struct SOAP_ENV__Detail *const*);
|
|
SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToSOAP_ENV__Detail(struct soap*, const char *, int, struct SOAP_ENV__Detail *const*, const char *);
|
|
SOAP_FMAC3 struct SOAP_ENV__Detail ** SOAP_FMAC4 soap_in_PointerToSOAP_ENV__Detail(struct soap*, const char*, struct SOAP_ENV__Detail **, const char*);
|
|
SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToSOAP_ENV__Detail(struct soap*, struct SOAP_ENV__Detail *const*, const char*, const char*);
|
|
SOAP_FMAC3 struct SOAP_ENV__Detail ** SOAP_FMAC4 soap_get_PointerToSOAP_ENV__Detail(struct soap*, struct SOAP_ENV__Detail **, const char*, const char*);
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#ifndef WITH_NOGLOBAL
|
|
|
|
#ifndef SOAP_TYPE_PointerToSOAP_ENV__Code_DEFINED
|
|
#define SOAP_TYPE_PointerToSOAP_ENV__Code_DEFINED
|
|
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToSOAP_ENV__Code(struct soap*, struct SOAP_ENV__Code *const*);
|
|
SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToSOAP_ENV__Code(struct soap*, const char *, int, struct SOAP_ENV__Code *const*, const char *);
|
|
SOAP_FMAC3 struct SOAP_ENV__Code ** SOAP_FMAC4 soap_in_PointerToSOAP_ENV__Code(struct soap*, const char*, struct SOAP_ENV__Code **, const char*);
|
|
SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToSOAP_ENV__Code(struct soap*, struct SOAP_ENV__Code *const*, const char*, const char*);
|
|
SOAP_FMAC3 struct SOAP_ENV__Code ** SOAP_FMAC4 soap_get_PointerToSOAP_ENV__Code(struct soap*, struct SOAP_ENV__Code **, const char*, const char*);
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#ifndef SOAP_TYPE_PointerTons1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_DEFINED
|
|
#define SOAP_TYPE_PointerTons1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_DEFINED
|
|
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTons1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ(struct soap*, ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ *const*);
|
|
SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTons1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ(struct soap*, const char *, int, ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ *const*, const char *);
|
|
SOAP_FMAC3 ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ ** SOAP_FMAC4 soap_in_PointerTons1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ(struct soap*, const char*, ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ **, const char*);
|
|
SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTons1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ(struct soap*, ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ *const*, const char*, const char*);
|
|
SOAP_FMAC3 ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ ** SOAP_FMAC4 soap_get_PointerTons1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ(struct soap*, ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ **, const char*, const char*);
|
|
#endif
|
|
|
|
#ifndef SOAP_TYPE_PointerTo_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_DEFINED
|
|
#define SOAP_TYPE_PointerTo_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_DEFINED
|
|
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS(struct soap*, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS *const*);
|
|
SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS(struct soap*, const char *, int, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS *const*, const char *);
|
|
SOAP_FMAC3 _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS ** SOAP_FMAC4 soap_in_PointerTo_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS(struct soap*, const char*, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS **, const char*);
|
|
SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS(struct soap*, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS *const*, const char*, const char*);
|
|
SOAP_FMAC3 _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS ** SOAP_FMAC4 soap_get_PointerTo_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS(struct soap*, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS **, const char*, const char*);
|
|
#endif
|
|
|
|
#ifndef SOAP_TYPE_PointerTo_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM_DEFINED
|
|
#define SOAP_TYPE_PointerTo_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM_DEFINED
|
|
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM(struct soap*, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM *const*);
|
|
SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM(struct soap*, const char *, int, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM *const*, const char *);
|
|
SOAP_FMAC3 _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM ** SOAP_FMAC4 soap_in_PointerTo_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM(struct soap*, const char*, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM **, const char*);
|
|
SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM(struct soap*, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM *const*, const char*, const char*);
|
|
SOAP_FMAC3 _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM ** SOAP_FMAC4 soap_get_PointerTo_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM(struct soap*, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_ITEMS_ITEM **, const char*, const char*);
|
|
#endif
|
|
|
|
#ifndef SOAP_TYPE_PointerTo_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_BASEINFO_DEFINED
|
|
#define SOAP_TYPE_PointerTo_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_BASEINFO_DEFINED
|
|
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_BASEINFO(struct soap*, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_BASEINFO *const*);
|
|
SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_BASEINFO(struct soap*, const char *, int, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_BASEINFO *const*, const char *);
|
|
SOAP_FMAC3 _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_BASEINFO ** SOAP_FMAC4 soap_in_PointerTo_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_BASEINFO(struct soap*, const char*, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_BASEINFO **, const char*);
|
|
SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_BASEINFO(struct soap*, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_BASEINFO *const*, const char*, const char*);
|
|
SOAP_FMAC3 _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_BASEINFO ** SOAP_FMAC4 soap_get_PointerTo_ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_BASEINFO(struct soap*, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCOREREQ_BASEINFO **, const char*, const char*);
|
|
#endif
|
|
|
|
#ifndef SOAP_TYPE_PointerTo_ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_ZTABLE_USCORERETURN_DEFINED
|
|
#define SOAP_TYPE_PointerTo_ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_ZTABLE_USCORERETURN_DEFINED
|
|
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_ZTABLE_USCORERETURN(struct soap*, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_ZTABLE_USCORERETURN *const*);
|
|
SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_ZTABLE_USCORERETURN(struct soap*, const char *, int, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_ZTABLE_USCORERETURN *const*, const char *);
|
|
SOAP_FMAC3 _ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_ZTABLE_USCORERETURN ** SOAP_FMAC4 soap_in_PointerTo_ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_ZTABLE_USCORERETURN(struct soap*, const char*, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_ZTABLE_USCORERETURN **, const char*);
|
|
SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_ZTABLE_USCORERETURN(struct soap*, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_ZTABLE_USCORERETURN *const*, const char*, const char*);
|
|
SOAP_FMAC3 _ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_ZTABLE_USCORERETURN ** SOAP_FMAC4 soap_get_PointerTo_ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_ZTABLE_USCORERETURN(struct soap*, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_ZTABLE_USCORERETURN **, const char*, const char*);
|
|
#endif
|
|
|
|
#ifndef SOAP_TYPE_PointerTo_ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_RSP_USCOREBASEINFO_DEFINED
|
|
#define SOAP_TYPE_PointerTo_ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_RSP_USCOREBASEINFO_DEFINED
|
|
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTo_ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_RSP_USCOREBASEINFO(struct soap*, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_RSP_USCOREBASEINFO *const*);
|
|
SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTo_ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_RSP_USCOREBASEINFO(struct soap*, const char *, int, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_RSP_USCOREBASEINFO *const*, const char *);
|
|
SOAP_FMAC3 _ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_RSP_USCOREBASEINFO ** SOAP_FMAC4 soap_in_PointerTo_ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_RSP_USCOREBASEINFO(struct soap*, const char*, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_RSP_USCOREBASEINFO **, const char*);
|
|
SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTo_ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_RSP_USCOREBASEINFO(struct soap*, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_RSP_USCOREBASEINFO *const*, const char*, const char*);
|
|
SOAP_FMAC3 _ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_RSP_USCOREBASEINFO ** SOAP_FMAC4 soap_get_PointerTo_ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_RSP_USCOREBASEINFO(struct soap*, _ns1__DT_USCOREFACTORY_USCORENUMBER_USCORERSP_RSP_USCOREBASEINFO **, const char*, const char*);
|
|
#endif
|
|
|
|
#ifndef SOAP_TYPE__QName_DEFINED
|
|
#define SOAP_TYPE__QName_DEFINED
|
|
|
|
inline void soap_default__QName(struct soap *soap, char **a)
|
|
{
|
|
(void)soap; /* appease -Wall -Werror */
|
|
#ifdef SOAP_DEFAULT__QName
|
|
*a = SOAP_DEFAULT__QName;
|
|
#else
|
|
*a = (char *)0;
|
|
#endif
|
|
}
|
|
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize__QName(struct soap*, char *const*);
|
|
|
|
#define soap__QName2s(soap, a) soap_QName2s(soap, (a))
|
|
SOAP_FMAC3 int SOAP_FMAC4 soap_out__QName(struct soap*, const char*, int, char*const*, const char*);
|
|
|
|
#define soap_s2_QName(soap, s, a) soap_s2QName((soap), (s), (char**)(a), 0, -1, NULL)
|
|
SOAP_FMAC3 char * * SOAP_FMAC4 soap_in__QName(struct soap*, const char*, char **, const char*);
|
|
|
|
#define soap_instantiate__QName soap_instantiate_string
|
|
|
|
|
|
#define soap_new__QName soap_new_string
|
|
|
|
SOAP_FMAC3 int SOAP_FMAC4 soap_put__QName(struct soap*, char *const*, const char*, const char*);
|
|
|
|
inline int soap_write__QName(struct soap *soap, char *const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (p)
|
|
{ if (soap_begin_send(soap) || ::soap_put__QName(soap, p, "QName", "") || soap_end_send(soap))
|
|
return soap->error;
|
|
}
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_PUT__QName(struct soap *soap, const char *URL, char *const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put__QName(soap, p, "QName", "") || soap_end_send(soap) || soap_recv_empty_response(soap))
|
|
return soap_closesock(soap);
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_PATCH__QName(struct soap *soap, const char *URL, char *const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put__QName(soap, p, "QName", "") || soap_end_send(soap) || soap_recv_empty_response(soap))
|
|
return soap_closesock(soap);
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_POST_send__QName(struct soap *soap, const char *URL, char *const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put__QName(soap, p, "QName", "") || soap_end_send(soap))
|
|
return soap_closesock(soap);
|
|
return SOAP_OK;
|
|
}
|
|
SOAP_FMAC3 char ** SOAP_FMAC4 soap_get__QName(struct soap*, char **, const char*, const char*);
|
|
|
|
inline int soap_read__QName(struct soap *soap, char **p)
|
|
{
|
|
if (p)
|
|
{ if (soap_begin_recv(soap) || ::soap_get__QName(soap, p, NULL, NULL) == NULL || soap_end_recv(soap))
|
|
return soap->error;
|
|
}
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_GET__QName(struct soap *soap, const char *URL, char **p)
|
|
{
|
|
if (soap_GET(soap, URL, NULL) || ::soap_read__QName(soap, p))
|
|
return soap_closesock(soap);
|
|
return soap_closesock(soap);
|
|
}
|
|
|
|
inline int soap_POST_recv__QName(struct soap *soap, char **p)
|
|
{
|
|
if (::soap_read__QName(soap, p))
|
|
return soap_closesock(soap);
|
|
return soap_closesock(soap);
|
|
}
|
|
#endif
|
|
|
|
#ifndef SOAP_TYPE__XML_DEFINED
|
|
#define SOAP_TYPE__XML_DEFINED
|
|
#endif
|
|
|
|
#ifndef SOAP_TYPE_string_DEFINED
|
|
#define SOAP_TYPE_string_DEFINED
|
|
|
|
inline void soap_default_string(struct soap *soap, char **a)
|
|
{
|
|
(void)soap; /* appease -Wall -Werror */
|
|
#ifdef SOAP_DEFAULT_string
|
|
*a = SOAP_DEFAULT_string;
|
|
#else
|
|
*a = (char *)0;
|
|
#endif
|
|
}
|
|
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_string(struct soap*, char *const*);
|
|
|
|
#define soap_string2s(soap, a) (a)
|
|
SOAP_FMAC3 int SOAP_FMAC4 soap_out_string(struct soap*, const char*, int, char*const*, const char*);
|
|
|
|
#define soap_s2string(soap, s, a) soap_s2char((soap), (s), (char**)(a), 1, 0, -1, NULL)
|
|
SOAP_FMAC3 char * * SOAP_FMAC4 soap_in_string(struct soap*, const char*, char **, const char*);
|
|
|
|
SOAP_FMAC3 char * * SOAP_FMAC4 soap_new_string(struct soap *soap, int n = -1);
|
|
SOAP_FMAC3 int SOAP_FMAC4 soap_put_string(struct soap*, char *const*, const char*, const char*);
|
|
|
|
inline int soap_write_string(struct soap *soap, char *const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (p)
|
|
{ if (soap_begin_send(soap) || ::soap_put_string(soap, p, "string", "") || soap_end_send(soap))
|
|
return soap->error;
|
|
}
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_PUT_string(struct soap *soap, const char *URL, char *const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_string(soap, p, "string", "") || soap_end_send(soap) || soap_recv_empty_response(soap))
|
|
return soap_closesock(soap);
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_PATCH_string(struct soap *soap, const char *URL, char *const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_string(soap, p, "string", "") || soap_end_send(soap) || soap_recv_empty_response(soap))
|
|
return soap_closesock(soap);
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_POST_send_string(struct soap *soap, const char *URL, char *const*p)
|
|
{
|
|
soap_free_temp(soap);
|
|
if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || ::soap_put_string(soap, p, "string", "") || soap_end_send(soap))
|
|
return soap_closesock(soap);
|
|
return SOAP_OK;
|
|
}
|
|
SOAP_FMAC3 char ** SOAP_FMAC4 soap_get_string(struct soap*, char **, const char*, const char*);
|
|
|
|
inline int soap_read_string(struct soap *soap, char **p)
|
|
{
|
|
if (p)
|
|
{ if (soap_begin_recv(soap) || ::soap_get_string(soap, p, NULL, NULL) == NULL || soap_end_recv(soap))
|
|
return soap->error;
|
|
}
|
|
return SOAP_OK;
|
|
}
|
|
|
|
inline int soap_GET_string(struct soap *soap, const char *URL, char **p)
|
|
{
|
|
if (soap_GET(soap, URL, NULL) || ::soap_read_string(soap, p))
|
|
return soap_closesock(soap);
|
|
return soap_closesock(soap);
|
|
}
|
|
|
|
inline int soap_POST_recv_string(struct soap *soap, char **p)
|
|
{
|
|
if (::soap_read_string(soap, p))
|
|
return soap_closesock(soap);
|
|
return soap_closesock(soap);
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|
|
/* End of soapH.h */
|